SpringBoot+Mybatis关于开启驼峰映射的设置

2021-07-05 08:06

阅读:396

标签:应该   服务   ESS   类型   apu   属性   驼峰   配置信息   res   

 mybatis自定义的SQL语句中,如select语句,如果数据库表的字段为驼峰命名,即如img_address这样的形式,那么select语句执行的结果会变成null。

  解决办法是在配置文件中加上开启驼峰映射的配置信息。根据配置文件的类型分为以下两种:

1.在.properties文件中添加:

mybatis.configuration.map-underscore-to-camel-case=true 

 但如果已经在.properties中配置了mybatis.config-location=classpath:mybatis/mybatis-config.xml这样的语句,就应该使用下一种方式,即把配置信息写在.xml中。

2.在mybatis的配置文件,如mybatis-config.xml中进行配置: 

configuration>
    
      
    settings>
      setting name="mapUnderscoreToCamelCase" value="true"/>
    settings>
 
configuration>

 

SpringBoot+Mybatis关于开启驼峰映射的设置

标签:应该   服务   ESS   类型   apu   属性   驼峰   配置信息   res   

原文地址:https://www.cnblogs.com/ifindu-san/p/9599348.html


评论


亲,登录后才可以留言!