在编程中,凡是重复的,繁琐的操作,一定会有简捷的操作来解决的。

但是简捷的方法也要自己去摸索,体会到自己在项目中写下面三个包中的代码的痛苦,就会知道mybatis反向生成代码是多么爽。

Eclipse中Maven 配置mybatis反向生成代码完整步骤_bc


直接上步骤吧

1.打开我们的Maven项目,在pom.xml文件…标签中添加如下配置:

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<version>3.1</version>
	<configuration>
		<source>1.8</source>
		<target>1.8</target>
	</configuration>
</plugin>
<plugin>
	<groupId>org.mybatis.generator</groupId>
	<artifactId>mybatis-generator-maven-plugin</artifactId>
	<version>1.3.2</version>
	<configuration>
		<verbose>true</verbose>
		<overwrite>true</overwrite>
	</configuration>
</plugin>

2.在src\main\resources路径下创建并配置generatorConfig.xml

Eclipse中Maven 配置mybatis反向生成代码完整步骤_java_02


配置内容如下(对应需要修改的地方有注释标记):

<?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>
	<!-- 数据库驱动 -->
	<classPathEntry
		location="F:\apache-tomcat-8.5.29-windows-x64\apache-tomcat-8.5.29\lib\mysql-connector-java-8.0.15.jar" />
<!-- 这里的mysql驱动要求写绝对路径,有的版本可能不同 -->		
	<context id="DB2Tables" targetRuntime="MyBatis3">
		<commentGenerator>
			<property name="suppressDate" value="true" />
			<!-- 是否去除自动生成的注释 true:是 : false:否 -->
			<property name="suppressAllComments" value="true" />
		</commentGenerator>

		<!--数据库链接URL,用户名、密码 -->
<!-- 记得改好对应数据库信息,建议加上数据库后面加上?serverTimezone=UTC -->
<!-- 不明白可以看链接() -->

<!--我这里的driverClass="com.mysql.cj.jdbc.Driver" 中由于mysql版本问题,需要加.cj-->
		<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
			connectionURL="jdbc:mysql://39.106.193.131:3306/carproject?serverTimezone=UTC"
			userId="root" password="123456">
		</jdbcConnection>

		<javaTypeResolver>
			<property name="forceBigDecimals" value="false" />
		</javaTypeResolver>

<!-- 记得修改对应的包名和存放路径 -->
		<!-- 生成模型的包名和位置 -->
		<javaModelGenerator
			targetPackage="com.javen.entitys" targetProject="src/main/java">
			<property name="enableSubPackages" value="true" />
			<property name="trimStrings" value="true" />
		</javaModelGenerator>

		<!-- 生成映射文件的包名和位置 -->
		<sqlMapGenerator targetPackage="com.javen.mapping"
			targetProject="src/main/java">
			<property name="enableSubPackages" value="true" />
		</sqlMapGenerator>

		<!-- 生成DAO的包名和位置 -->
		<javaClientGenerator type="XMLMAPPER"
			targetPackage="com.javen.dao" targetProject="src/main/java">
			<property name="enableSubPackages" value="true" />
		</javaClientGenerator>

		<!--要生成的表tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
		<table tableName="carInfo" domainObjectName="CarInfo"
			enableCountByExample="false" enableUpdateByExample="false"
			enableDeleteByExample="false" enableSelectByExample="false"
			selectByExampleQueryId="false">
		</table>
	</context>
</generatorConfiguration>

供参考

Eclipse中Maven 配置mybatis反向生成代码完整步骤_java_03

3.执行maven命令 mybatis-generator:generate 生成Mybatis文件

项目右键->run as->Maven build…,
在Goals:中输入mybatis-generator:generate

Eclipse中Maven 配置mybatis反向生成代码完整步骤_bc_04

4.没有保错的话说明OK了,刷新显示结果

Eclipse中Maven 配置mybatis反向生成代码完整步骤_mysql_05


我想要的maintenanceplan相关代码就自动生成了。