mybatis-plus依赖
时间: 2023-09-23 09:04:59 浏览: 95
mybatis-plus所有依赖包
如果你想在Java项目中使用MyBatis-Plus,需要在项目的pom.xml文件中添加MyBatis-Plus的依赖。具体依赖信息如下:
```xml
<!-- MyBatis-Plus 依赖 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
```
此外,如果你要使用MyBatis-Plus提供的自动代码生成工具,还需要添加MyBatis-Plus的代码生成器依赖:
```xml
<!-- MyBatis-Plus 代码生成器依赖 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.4.3.1</version>
</dependency>
```
以上是MyBatis-Plus的Maven坐标,如果你使用Gradle或其他构建工具,需要根据对应的语法添加依赖。
阅读全文