sprintboot+mybatis踩坑:查询不到数据list「null」——支持驼峰配置

按照springboot流行的helloworld,一步步建立demo,查询数据库,却发现,数据库明明有数据,通过mapper查询出来的list.size也有显示记录数。但是数据却是空的,list[null,nul]

于是检查了sql语句,以及controller、service、dao,反反复复检查没发现问题。最后想到可能是驼峰的问题,于是JavaBean里面属性改成和数据库一样,果然能查出数据。

那么怎么配置mybatis支持驼峰呢?

第一:application.properties(这种我没试过,我用的是yml)

mybatis.configuration.map-underscore-to-camel-case=true

第二:application.yml

mybatis:

configuration:

map-underscore-to-camel-case: true

sprintboot+mybatis踩坑:查询不到数据list「null」——支持驼峰配置

相关推荐