springboot添加mybatisplus依赖
时间: 2023-07-06 16:38:44 浏览: 166
springboot+mybatisplus
在Spring Boot项目中添加MyBatis Plus的依赖,您需要在pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
```
这是MyBatis Plus的Spring Boot Starter依赖项,它包含了所有必要的依赖项以及自动配置类,可以让您快速集成MyBatis Plus到您的Spring Boot项目中。
添加完依赖后,您需要在application.properties或application.yml文件中配置MyBatis Plus的一些属性,例如数据库连接信息、Mapper扫描路径等。
阅读全文