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
相关推荐
xiuyangsong 2020-11-16
Nishinoshou 2020-11-09
jimgreatly 2020-09-01
dongxurr 2020-08-18
Dullonjiang 2020-08-15
Dullonjiang 2020-08-11
Dullonjiang 2020-08-09
dongxurr 2020-08-08
yunzhonmghe 2020-08-07
jimgreatly 2020-08-03
Dullonjiang 2020-07-30
jimgreatly 2020-07-27
liqiancao 2020-07-26
xiuyangsong 2020-07-26
dongxurr 2020-07-26
mcvsyy 2020-07-26
helloxusir 2020-07-25
牧场SZShepherd 2020-07-20