mybatis_generator_逆向工程的使用笔记

时间:2021-05-01 22:48:54

1:解压mybatis_generator_1.3.1.zip文件。

2:把features,pougins文件夹copy到D:\java\eclipse\eclipse目录下(D:\java\eclipse\eclipse为eclipse的安装目录)。

3:进入D:\java\eclipse\eclipse\dropins目录,并新建mybatis.link文件,添加内容:path=D:\java\eclipse\eclipse。

4:启动eclipse。

5:项目中添加generatorConfig.xml文件,并修改相关内容。右建可以找到generator mybatis artifacts生成。操作如下所示:

 <?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>
<!--
<properties resource="conn.properties" />
-->
<!-- 处理1 -->
<classPathEntry location="D:\java\mysql-connector-java-5.1.8.jar"/>
<!-- 指定运行环境是mybatis3的版本 -->
<context id="testTables" targetRuntime="MyBatis3"> <commentGenerator>
<!-- 是否取消注释 -->
<property name="suppressAllComments" value="true" />
<!-- 是否生成注释代时间戳 -->
<property name="suppressDate" value="true" />
</commentGenerator>
<!-- 处理2 jdbc 连接信息 -->
<jdbcConnection
driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/jxc?useUnicode=true&amp;characterEncoding=UTF-8"
userId="root"
password="">
</jdbcConnection> <!--处理3 targetPackage指定模型在生成在哪个包 ,targetProject指定项目的src,-->
<javaModelGenerator targetPackage="com.bie.po"
targetProject="JXC/src/main/resources">
<!-- 去除字段前后空格 -->
<property name="trimStrings" value="false" />
</javaModelGenerator>
<!--处理4 配置SQL映射文件生成信息 -->
<sqlMapGenerator targetPackage="com.bie.dao"
targetProject="JXC/src/main/resources" />
<!-- 处理5 配置dao接口生成信息-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.bie.dao" targetProject="JXC/src/main/resources" /> <!--
处理6 修改自己对应的数据表和实体类的类名称
注意:如果添加其他数据表,将下面这些注释以后再添加,然后执行。
-->
<table tableName="jxc_admin" domainObjectName="JxcAdmin"/>
<table tableName="jxc_customer" domainObjectName="JxcCustomer"/>
<table tableName="jxc_employee" domainObjectName="JxcEmployee"/>
<table tableName="jxc_goods" domainObjectName="JxcGoods"/>
<table tableName="jxc_log" domainObjectName="JxcLog"/>
<table tableName="jxc_menu" domainObjectName="JxcMenu"/>
<table tableName="jxc_purchaseorder" domainObjectName="JxcPurchaseorder"/>
<table tableName="jxc_role" domainObjectName="JxcRole"/>
<table tableName="jxc_salesorder" domainObjectName="JxcSalesorder"/>
<table tableName="jxc_stock" domainObjectName="JxcStock"/>
<table tableName="jxc_supplier" domainObjectName="JxcSupplier"/>
<table tableName="jxc_warehouse" domainObjectName="JxcWarehouse"/>
</context> </generatorConfiguration>

操作如下所示:

mybatis_generator_逆向工程的使用笔记

最后在实体类包里面将xxxExample.java文件全部删除即可。即完成自动生成实体类和dao层接口和xxxmapper.xml映射文件。

注意:完成后记得把实体实现Serializable,重写一下toString()方法,方便以后使用。