3. 使用配置
MyBatis-Plus在使用过程中的配置选项,其中,部分配置继承自MyBatis原生所支持的配置。这里主要讲解SpringMVC和SpringBoot配置的差异。具体的配置项可以参考官方的文档,[MP的配置] mp.baomidou.com/config/
3.1. 使用方式
- Spring Boot:
mybatis-plus:
......
configuration:
......
global-config:
......
db-config:
......
- Spring MVC:
<bean id="sqlSessionFactory" class="com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean">
<property name="configuration" ref="configuration"/> <!-- 非必须 -->
<property name="globalConfig" ref="globalConfig"/> <!-- 非必须 -->
......
</bean>
<bean id="configuration" class="com.baomidou.mybatisplus.core.MybatisConfiguration">
......
</bean>
<bean id="globalConfig" class="com.baomidou.mybatisplus.core.config.GlobalConfig">
<property name="dbConfig" ref="dbConfig"/> <!-- 非必须 -->
......
</bean>
<bean id="dbConfig" class="com.baomidou.mybatisplus.core.config.GlobalConfig.DbConfig">
......
</bean>