mybatis-plus 代码生成器 3.5.2 例子
时间: 2023-10-20 19:05:29 浏览: 100
以下是使用 MyBatis-Plus 代码生成器 3.5.2 自动生成代码的例子:
1. 首先,在项目中添加依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.5.2</version>
</dependency>
```
2. 然后,创建配置文件 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">
<commentGenerator>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC"
userId="root"
password="123456"/>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<javaModelGenerator targetPackage="com.example.entity"
targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<sqlMapGenerator targetPackage="mapper"
targetProject="src/main/resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<javaClientGenerator type="XMLMAPPER"
targetPackage="com.example.mapper"
targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<table tableName="user"
domainObjectName="User"
enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false">
<property name="useActualColumnNames" value="true"/>
</table>
</context>
</generatorConfiguration>
```
这里配置了连接数据库的参数、生成实体类、Mapper 接口和映射文件的位置等。
3. 创建一个 Java 类,使用 MyBatis-Plus 的代码生成器自动生成代码:
```java
public class CodeGenerator {
public static void main(String[] args) throws Exception {
// 读取 generatorConfig.xml 文件
InputStream inputStream = CodeGenerator.class.getResourceAsStream("/generatorConfig.xml");
ConfigurationParser cp = new ConfigurationParser(Collections.emptyList());
Configuration config = cp.parseConfiguration(inputStream);
// 创建代码生成器
DefaultShellCallback callback = new DefaultShellCallback(true);
MyBatisGenerator generator = new MyBatisGenerator(config, callback, Collections.emptyList());
// 执行生成代码
generator.generate(null);
}
}
```
运行该类,即可自动生成实体类、Mapper 接口和映射文件。
阅读全文