使用 SpringBoot 整合 MyBatis 开发 开启驼峰映射功能
Posted 东海陈光剑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 SpringBoot 整合 MyBatis 开发 开启驼峰映射功能相关的知识,希望对你有一定的参考价值。
使用 SpringBoot 整合 MyBatis 开发时,发现从数据库中查询到的结果封装到javabean中,只要表中有下划线的字段,就会出现null值
MyBatis默认是属性名和数据库字段名一一对应的,即
数据库表列:user_name
实体类属性:user_name
但是java中一般使用驼峰命名
数据库表列:user_name
实体类属性:userName
例如,在写注解式的Mapper代码时:
@Select("select * from kunlun_result where id=#{resultId} limit 1")
KunlunResultWithBLOBs findById(Long resultId);
上面的KunlunResultWithBLOBs对象的值要想正常映射上, 就需要开启驼峰映射功能.
在SpringBoot中,可以通过设置map-underscore-to-camel-case属性为true来开启驼峰功能:
mybatis:
mapper-locations: classpath:mapper/*.xml#注意:一定要对应mapper映射xml文件的所在路径
configuration:
map-underscore-to-camel-case: true # 开启驼峰命名
以上是关于使用 SpringBoot 整合 MyBatis 开发 开启驼峰映射功能的主要内容,如果未能解决你的问题,请参考以下文章
企业分布式微服务云SpringCloud SpringBoot mybatis (十三)Spring Boot整合MyBatis
SpringBoot整合Mybatis方式1:使用XML方式整合Mybatis(添加数据修改数据删除数据查询数据)