spring boot 从数据库里面查询出来的部分数据为null值

原因是没有开启驼峰命名转换

application.properties:

#开启驼峰命名转换
mybatis.configuration.map-underscore-to-camel-case=true

application.yml:

#开启驼峰命名转换
mybatis:
  configuration:
    map-underscore-to-camel-case: true

 

你可能感兴趣的:(java)