mybatis-plus:配置
时间: 2023-11-28 13:43:33 浏览: 128
mybatis配置
Mybatis-Plus是Mybatis的增强工具,在Mybatis的基础上进行了扩展和增强,提供了许多实用的功能,例如自动生成代码、分页插件、性能分析插件等。下面是Mybatis-Plus的配置方法:
1. 引入Mybatis-Plus的依赖包,例如在Maven项目中可以在pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
```
2. 在application.yml或application.properties文件中添加Mybatis-Plus的配置,例如:
```yaml
mybatis-plus:
# 配置mapper的xml文件的位置,多个文件用逗号分隔
mapper-locations: classpath*:mapper/*.xml
# 配置实体类的包名
typeAliasesPackage: com.example.entity
# 配置全局的主键生成策略
global-config:
db-config:
id-type: auto
# 配置分页插件
pagination:
dialect: mysql
```
3. 在Mybatis的配置文件中添加Mybatis-Plus的插件,例如:
```xml
<configuration>
<!-- 配置Mybatis-Plus的分页插件 -->
<plugins>
<plugin interceptor="com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor"/>
</plugins>
</configuration>
```
阅读全文