mybatis 开启自动驼峰转换
默认情况下,mybatis需要在mapper xml文件中编写一堆的ResultMap来对应Java Bean和数据库字段的关系。
在开启驼峰转换后就不需要resultMap了。直接resultType="bean"即可
mybatis:
type-aliases-package: net.ifok.project.model
mapper-locations: classpath:mapper/*.xml
configuration:
# Mybatis 开启驼峰标识, 数据库为下划线命名规则, 而实体类为驼峰标识, 不开启此选项无法查询出数据
map-underscore-to-camel-case: true
重点配置:map-underscore-to-camel-case=true
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/243556.html