以java为例举一个mybatis plus逆向生成实体类
时间: 2023-07-18 17:25:15 浏览: 122
好的,使用 MyBatis-Plus 逆向工程生成实体类的步骤如下:
1. 首先需要在 pom.xml 中添加 MyBatis-Plus 的依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.4.2</version>
</dependency>
```
2. 在 resources 目录下创建一个名为 generator 的文件夹,用来存放 MyBatis-Plus 的代码生成器配置文件。
3. 在 generator 文件夹下创建一个名为 generatorConfig.xml 的配置文件,配置文件内容如下:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<context id="mysql" targetRuntime="MyBatis3">
<!-- 数据库连接信息 -->
<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/test?serverTimezone=UTC" userId="root" password="root">
</jdbcConnection>
<!-- 指定实体类生成的包名和位置 -->
<javaModelGenerator targetPackage="com.example.entity" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 指定 Mapper 接口生成的包名和位置 -->
<sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 指定 Mapper 映射文件生成的包名和位置 -->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.example.mapper" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- 指定要生成的表名 -->
<table tableName="user"></table>
</context>
</generatorConfiguration>
```
4. 在 Maven 的 Plugins 中添加 MyBatis-Plus 的代码生成器插件:
```xml
<build>
<plugins>
<!-- MyBatis-Plus 代码生成器插件 -->
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.4.0</version>
<dependencies>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.4.2</version>
</dependency>
</dependencies>
<configuration>
<!-- 指定 MyBatis-Plus 代码生成器配置文件 -->
<configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>
<overwrite>true</overwrite>
<verbose>true</verbose>
</configuration>
</plugin>
</plugins>
</build>
```
5. 执行 Maven 的 mybatis-generator:generate 命令,即可生成实体类:
```bash
mvn mybatis-generator:generate
```
以上就是使用 MyBatis-Plus 的逆向工程生成实体类的步骤。需要注意的是,配置文件中需要指定数据库连接信息、实体类、Mapper 接口和映射文件的生成位置以及要生成的表名等信息。
阅读全文