怎么配置mybatisplus配置插件
时间: 2023-10-06 10:10:08 浏览: 80
要配置 MyBatis-Plus 插件,需要在项目的配置文件中添加以下内容:
1. 在 pom.xml 文件中添加 MyBatis-Plus 的依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
```
2. 在 application.properties 或 application.yml 文件中添加 MyBatis-Plus 的配置项:
```yaml
# MyBatis-Plus 配置项
mybatis-plus:
# mapper xml 的路径
mapper-locations: classpath*:mapper/*.xml
# 实体类扫描的包路径
typeAliasesPackage: com.example.demo.entity
# 开启驼峰命名法自动转换
configuration:
map-underscore-to-camel-case: true
```
其中,mapper-locations 指定 MyBatis Mapper 文件的位置,typeAliasesPackage 指定实体类的包路径,map-underscore-to-camel-case 开启驼峰命名法自动转换。
3. 在 Mapper 接口中使用 MyBatis-Plus 提供的接口,例如:
```java
public interface UserMapper extends BaseMapper<User> {
}
```
其中,BaseMapper 是 MyBatis-Plus 提供的通用 Mapper 接口,可以直接继承使用。
这样就完成了 MyBatis-Plus 插件的配置。
阅读全文