SpringBoot+Mybatis关于开启驼峰映射的设置
2021-07-05 08:06
标签:应该 服务 ESS 类型 apu 属性 驼峰 配置信息 res mybatis自定义的SQL语句中,如select语句,如果数据库表的字段为驼峰命名,即如img_address这样的形式,那么select语句执行的结果会变成null。 解决办法是在配置文件中加上开启驼峰映射的配置信息。根据配置文件的类型分为以下两种: 1.在.properties文件中添加: 但如果已经在.properties中配置了mybatis.config-location=classpath:mybatis/mybatis-config.xml这样的语句,就应该使用下一种方式,即把配置信息写在.xml中。 2.在mybatis的配置文件,如mybatis-config.xml中进行配置: SpringBoot+Mybatis关于开启驼峰映射的设置 标签:应该 服务 ESS 类型 apu 属性 驼峰 配置信息 res 原文地址:https://www.cnblogs.com/ifindu-san/p/9599348.htmlmybatis.configuration.map-underscore-to-camel-case=true
configuration>
settings>
setting name="mapUnderscoreToCamelCase" value="true"/>
settings>
configuration>
文章标题:SpringBoot+Mybatis关于开启驼峰映射的设置
文章链接:http://soscw.com/index.php/essay/102020.html