MyBatis Generator springboot 2.7.12依赖是什么版本 引用什么依赖
时间: 2024-02-13 19:02:24 浏览: 60
MyBatis Generator 的版本是与 MyBatis 版本相关联的,它并不与 Spring Boot 的版本直接相关。但是在 Spring Boot 2.7.12 中,通常使用的是 MyBatis 3.5.7 版本。
如果需要使用 MyBatis Generator,可以在 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.4.0</version>
</dependency>
```
这是 MyBatis Generator 的核心依赖,可以在 Maven Central 中获取。同时,需要在项目中配置 MyBatis Generator 的配置文件,来生成对应的代码。
阅读全文