MybatisPlus之配置
在Mybatis-Plus中有大量配置,其中一部分是属于Mybatis的配置,另外一部分是Mybatis-Plus的配置。简单记录Mybatis-Plus常用配置
基本配置
configLocation
-
类型:
String
-
默认值:
null
MyBatis配置⽂件位置,如果需要设置单独的MyBatis配置,请将其路径配置到configLocation中。MyBatis配置Configuration的具体内容请参考MyBatis官⽅⽂档
- Spring Boot
mybatis-plus.config-location = classpath:mybatis-config.xml
复制代码
- Spring MVC
<bean id="sqlSessionFactory" class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
复制代码
mapperLocations
-
类型:
String[]
-
默认值:
["classpath*:/mapper/**/*.xml"]
MyBatis Mapper所对应的XML⽂件位置,如果您在Mapper中有⾃定义⽅法(XML中有⾃定义实现),需要进⾏该配置,告诉Mapper所对应的XML⽂件位置。
WARNING
Maven 多模块项目的扫描路径需以classpath*:
开头 (即加载多个 jar 包下的 XML文件)
- Spring Boot
mybatis-plus.mapper-locations = classpath*:mybatis/*.xml
复制代码
- Spring MVC
<bean id="sqlSessionFactory" class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean">
<property name="mapperLocations" value="classpath*:mybatis/*.xml"/>
</bean>
复制代码
typeAliasesPackage
-
类型:
String
-
默认值:
null
MyBaits别名包扫描路径,通过该属性可以给包中的类注册别名,注册后在Mapper对应的XML⽂件中可以直接使⽤类名,⽽不⽤使⽤全限定的类名(即XML中调⽤的时候不⽤包含包名)。
- Spring Boot
mybatis-plus.type-aliases-package = com.mybatis.mp.pojo
复制代码
- Spring MVC
<bean id="sqlSessionFactory" class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean">
<property name="typeAliasesPackage" value="com.baomidou.mybatisplus.samples.quickstart.entity"/>
</bean>
复制代码
进阶配置
mapUnderscoreToCamelCase
- 类型:
boolean
- 默认值:
true
是否开启自动驼峰命名规则(camel case)映射,即从经典数据库列名 A_COLUMN(下划线命名) 到经典 Java 属性名 aColumn(驼峰命名) 的类似映射。
注意
此属性在 MyBatis 中原默认值为 false,在 MyBatis-Plus 中,此属性也将用于生成最终的 SQL 的 select body
如果您的数据库命名符合规则无需使用
@TableField
注解指定数据库字段名
- SpringBoot
#关闭⾃动驼峰映射,该参数不能和mybatis-plus.config-location同时存在
mybatis-plus.configuration.map-underscore-to-camel-case=false
复制代码
cacheEnabled
- 类型:
boolean
- 默认值:
true
全局地开启或关闭配置⽂件中的所有映射器已经配置的任何缓存,默认为true。
- SpringBoot
mybatis-plus.configuration.cache-enabled=false
复制代码