配置generatorConfigxml
在maven工程中的resource中创建generatorConfig.xml

文件内容如下
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 
 | <?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="DB2Tables" targetRuntime="MyBatis3">
 <commentGenerator>
 <property name="suppressAllComments" value="true" />
 </commentGenerator>
 
 <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/****" userId="***" password="***">
 </jdbcConnection>
 
 
 <javaTypeResolver>
 <property name="forceBigDecimals" value="false" />
 </javaTypeResolver>
 
 <javaModelGenerator targetPackage="com.ScuSoftware.Factorio.model" targetProject="src/main/java">
 <property name="enableSubPackages" value="true" />
 <property name="trimStrings" value="true" />
 </javaModelGenerator>
 
 <sqlMapGenerator targetPackage="com.ScuSoftware.Factorio.mapping" targetProject="src/main/java">
 <property name="enableSubPackages" value="true" />
 </sqlMapGenerator>
 
 <javaClientGenerator type="ANNOTATEDMAPPER" targetPackage="com.ScuSoftware.Factorio.dao" targetProject="src/main/java">
 <property name="enableSubPackages" value="true" />
 </javaClientGenerator>
 
 
 <table tableName="tableName" domainObjectName="domainObjectName" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true" />
 
 
 </context>
 </generatorConfiguration>
 
 | 
配置maven
在pom.xml中添加
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 
 | <plugin>
 <groupId>org.mybatis.generator</groupId>
 <artifactId>mybatis-generator-maven-plugin</artifactId>
 <version>1.3.7</version>
 <configuration>
 <verbose>true</verbose>
 <overwrite>true</overwrite>
 <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
 </configuration>
 <dependencies>
 
 <dependency>
 <groupId>mysql</groupId>
 <artifactId>mysql-connector-java</artifactId>
 <version>5.1.46</version>
 </dependency>
 </dependencies>
 </plugin>
 
 | 
在Intellij IDEA添加“Run运行”选项
Step1:选择配置edit configuration

Step2:创建maven运行项

Step3:配置命令 mybatis-generator:generate -e

Step4:运行
在run下拉菜单中选中mybatis-generator点击运行
