后面可以专门研究一下这个插件,重新制作,使得它更加契合各个实际场景的使用。而且还可以依据它的这个思路,制作其他的生成工具。
1. 在pom.xml中引入maven插件包
<!-- 需要时,去掉注释,否则门禁过不去 -->
<!-- <plugin>-->
<!-- <groupId>org.mybatis.generator</groupId>-->
<!-- <artifactId>mybatis-generator-maven-plugin</artifactId>-->
<!-- <version>1.4.2</version>-->
<!-- <dependencies>-->
<!-- <dependency>-->
<!-- <artifactId>postgresql</artifactId>-->
<!-- <groupId>org.postgresql</groupId>-->
<!-- <version>42.3.6</version>-->
<!-- </dependency>-->
<!-- </dependencies>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>Generate MyBatis Artifacts</id>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>generate</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- <configuration>-->
<!-- <!–允许移动生成的文件 –>-->
<!-- <verbose>true</verbose>-->
<!-- <!– 是否覆盖 –>-->
<!-- <overwrite>false</overwrite>-->
<!-- <!– 自动生成的配置 –>-->
<!-- <configurationFile>src/main/resources/mybatis-generater.xml</configurationFile>-->
<!-- </configuration>-->
<!-- </plugin>-->
2. 在src/resources目录下新建xml文件-mybatis-generater.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>
<!-- mysql使用Mysql,pg使用 -->
<context id="DB2Tables" targetRuntime="MyBatis3" defaultModelType="flat">
<property name="beginningDelimiter" value="`"/>
<property name="endingDelimiter" value="`"/>
<commentGenerator>
<property name="suppressDate" value="true"/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库连接 -->
<jdbcConnection driverClass="org.postgresql.Driver"
connectionURL="jdbc:postgresql://tobehonordb.rwlb.polardb-pg-public.rds.aliyuncs.com:1921/mango-upc?currentSchema=mangoupc"
userId="mango_upc"
password="chenxin04187@#L">
<property name="useInformationSchema" value="true"/>
</jdbcConnection>
<!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
NUMERIC 类型解析为java.math.BigDecimal -->
<javaTypeResolver>
<property name="forceBigDecimals" value="true" />
</javaTypeResolver>
<!-- 生成模型的包名和位置 -->
<javaModelGenerator targetPackage="com.tobehonor.mangoupc.dto"
targetProject="src/main/java">
<!-- 是否允许子包,即targetPackage.schemaName.tableName -->
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator targetPackage="com.tobehonor.mangoupc.dao" targetProject="src/main/resources"/>
<!-- 生成DAO的包名和位置 -->
<javaClientGenerator targetPackage="com.tobehonor.mangoupc.dao"
targetProject="src/main/java"
type="XMLMAPPER"/>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table tableName="mg_user_t" domainObjectName="MgUser"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
</table>
</context>
</generatorConfiguration>