问题:数据库有数据,sql语句在MySQL中可以正常查询出数据,但mybatis查询的时候就出现问题了,查询数据为null,不知道问题出在哪儿,劳烦各位帮忙看一下问题。
实体类:
数据库数据类型:
数据库正常运行并有数据查询出来:
控制层代码:
mapper:
以下是配置文件application.yml中的连接数据库url配置:
url: jdbc:mysql://localhost:3306/huofenspringcloud?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&useAffectedRows=true&allowMultiQueries=true&characterEncoding=UTF-8
mybatis部分:
mybatis:
mapper-locations: classpath:mapper/*.xml
type-aliases-package: com.test.springcloud.pojo
configuration:
map-underscore-to-camel-case: true #允许驼峰格式命名
以上就是问题代码全部了,始终找不到问题所在