org.springframework.boot spring-boot-starter-data-jpa
配置完jpa之后自动生成实体类
之后测试时出现了驼峰字段的值为null,而像id之类的非驼峰字段却有值
解决思路
非驼峰字段有值说明数据是取到了,通过断点调试发现userName字段的set()方法没走,大概能猜出实体类映射出了问题
解决方案
pom.xml添加
org.springframework.boot spring-boot-configuration-processor true
application添加
#驼峰映射mybatis.configuration.map-underscore-to-camel-case=true