SpringBoot整合mybatis——配置mybatis驼峰命名规则自动转换

1.方式一
直接application.yml文件中配置开启

#mybatis配置
mybatis:
  typeAliasesPackage: com.example.mybaitsxml.dao.entity
  mapperLocations: classpath:mapper/*.xml
  configuration:
    map-underscore-to-camel-case: true

2.方式2
mybatis-config.xml文件中配置开启,application.yml文件指定配置文件。
application.yml文件:

#mybatis配置
mybatis:
  typeAliasesPackage: com.example.mybaitsxml.dao.entity
  mapperLocations: classpath:mapper/*.xml
  configLocation: classpath:/mybatis-config.xml

mybatis-config.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">

<configuration>
    <!--开启驼峰命名规则自动转换-->
    <settings>
    <setting name="mapUnderscoreToCamelCase" value="true" />
    </settings>
</configuration>

本文转载于SpringBoot整合mybatis——配置mybatis驼峰命名规则自动转换
,侵删。

你可能感兴趣的:(SpringBoot整合mybatis——配置mybatis驼峰命名规则自动转换)