1. 程式人生 > 其它 >Mybatis-Plus基礎篇--配置

Mybatis-Plus基礎篇--配置

一. 基礎配置

1. configLocation

MyBatis 配置檔案位置,如果您有單獨的 MyBatis 配置,請將其路徑配置到 configLocation 中。 MyBatisConfiguration 的具體內容請參考MyBatis 官方文件。

SpringBoot:

mybatis-plus.config-location  = classpath:mybatis-config.xml 

Spring MVC:

1 < bean id="sqlSessionFactory"
2 class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean"
> 3 <property name="configLocation" value="classpath:mybatis-config.xml"/> 4 </bean

2. mapperLocations

MyBatis Mapper 所對應的 XML 檔案位置,如果您在 Mapper 中有自定義方法(XML 中有自定義實現),需要進行該配置,告訴 Mapper 所對應的 XML 檔案位置。

SpringBoot:

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>

Maven 多模組專案的掃描路徑需以 classpath*: 開頭 (即載入多個 jar 包下的 XML 檔案)

3.typeAliasesPackage

MyBaits 別名包掃描路徑,通過該屬性可以給包中的類註冊別名,註冊後在 Mapper 對應的 XML 檔案中可以直接使用類名,而不用使用全限定的類名(即 XML 中呼叫的時候不用包含包名)。

SpringBoot:

mybatis-plus.type-aliases-package  = cn.itcast.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>

二、進階配置

1.mapUnderscoreToCamelCase

是否開啟自動駝峰命名規則(camel case)對映,即從經典資料庫列名 A_COLUMN(下劃線命名) 到經典 Java 屬性名 aColumn(駝峰命名) 的類似對映。

注意:此屬性在 MyBatis 中原預設值為 false,在 MyBatis-Plus 中,此屬性也將用於生成最終的 SQL 的 select body如果您的資料庫命名符合規則無需使用 @TableField 註解指定資料庫欄位名

示例:

# 關閉自動駝峰對映,該引數不能和mybatis-plus.config-location同時存在
mybatis-plus.configuration.map-underscore-to-camel-case=false

2.cacheEnabled

全域性地開啟或關閉配置檔案中的所有對映器已經配置的任何快取,預設值: true。

示例:

mybatis-plus.configuration.cache-enabled =false 

三、DB策略配置

1. idType

全域性預設主鍵型別,設定後,即可省略實體物件中的@TableId(type = IdType.AUTO)配置。預設值:ID_WORKER

SpringBoot示例:

mybatis-plus.global-config.db-config.id-type =auto 

Spring MVC示例:

<!-- 這裡使用MP提供的sqlSessionFactory,完成了Spring與MP的整合-->
<bean id="sqlSessionFactory"
class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="globalConfig">
<bean class="com.baomidou.mybatisplus.core.config.GlobalConfig">
<property name="dbConfig">
<bean
class="com.baomidou.mybatisplus.core.config.GlobalConfig$DbConfig">
<property name="idType" value="AUTO"/>
</bean>
</property>
</bean>
</property>
</bean

2.tablePrefix

表名字首,全域性配置後可省略 @TableName()配置。預設值:null

SpringBoot示例:

mybatis-plus.global-config.db-config.table-prefix =tb_

Spring MVC示例:

<bean id="sqlSessionFactory"
class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="globalConfig">
<bean class="com.baomidou.mybatisplus.core.config.GlobalConfig">
<property name="dbConfig">
<bean
class="com.baomidou.mybatisplus.core.config.GlobalConfig$DbConfig">
<property name="idType" value="AUTO"/>
<property name="tablePrefix" value="tb_"/>
</bean>
</property>
</bean>
</property>
</bean

四、配置參考

# 指定全域性的配置檔案
#mybatis-plus.config-location=classpath:mybatis-config.xml
# 指定Mapper.xml檔案的路徑
mybatis-plus.mapper-locations = classpath*:mybatis/*.xml
# 實體物件的掃描包
mybatis-plus.type-aliases-package = cn.itcast.mp.pojo
# 禁用自定的駝峰對映
mybatis-plus.configuration.map-underscore-to-camel-case=true
# 禁用快取
mybatis-plus.configuration.cache-enabled=false
# 全域性的id生成策略
mybatis-plus.global-config.db-config.id-type=auto
# 全域性的表名的字首
mybatis-plus.global-config.db-config.table-prefix=tb_