在执行的时候,数据都为空了,看数据是有取到的。是没有映射到的原因。
检查了下配置,是没有配置驼峰命名自动转换的原因。
添加配置: map-underscore-to-camel-case: true
#mybatis
mybatis:
mapper-locations: classpath*:/mybatis/**/*Mapper.xml
configuration:
map-underscore-to-camel-case: true
call-setters-on-nulls: true