使用 mybatis-generator 自动生成 MyBatis 代码

首先把这三个文件放到一个目录里,我是放到了C盘下的wangbo目录下:

接下来就是设置config.xml文件了,config.xml:

 1 <?xml version="1.0" encoding="UTF-8"?>  
 2 <!DOCTYPE generatorConfiguration  
 3 PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"  
 4 "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">  
 5 <generatorConfiguration>  
 6 <!-- 数据库驱动-->  
 7 <classPathEntry  location="ojdbc14.jar"/>
 8 <!--修改targetRuntime="MyBatis3"-->
 9 <context id="DB2Tables"  targetRuntime="MyBatis3">
10 <commentGenerator>  
11 <property name="suppressDate" value="true"/>  
12 <!-- 是否去除自动生成的注释 true:是 : false:否 -->  
13 <property name="suppressAllComments" value="true"/>  
14 </commentGenerator>  
15 <!--数据库链接URL,用户名、密码 -->  
16 <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@xxx.xxx.xxx.xxx:1521:ORADB" userId="xxxxxx" password="xxxxxxxxxxxxxxxxxxx">  
17 </jdbcConnection>  
18 <javaTypeResolver>  
19 <property name="forceBigDecimals" value="false"/>  
20 </javaTypeResolver>  
21 <!-- 生成模型的包名和位置-->  
22 <javaModelGenerator targetPackage="test.model" targetProject="C:\wangbo\">
23 <property name="enableSubPackages" value="true"/>  
24 <property name="trimStrings" value="true"/>  
25 </javaModelGenerator>  
26 <!-- 生成映射文件的包名和位置-->  
27 <sqlMapGenerator targetPackage="test.mapping" targetProject="C:\wangbo\">  
28 <property name="enableSubPackages" value="false"/>  
29 </sqlMapGenerator>  
30 <!-- 生成DAO的包名和位置   type="XMLMAPPER"-->  
31 <javaClientGenerator type="XMLMAPPER" targetPackage="test.dao" targetProject="C:\wangbo\">  
32 <property name="enableSubPackages" value="true"/>  
33 </javaClientGenerator>
34 
35 <!-- 要生成哪些表-->  
36 <table tableName="XLW_USER_BRANCH" domainObjectName="UserBranch" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
37 </context>  
38 </generatorConfiguration>

下面解释下需要配置的地方:

配置完后打开cmd命令行,进入到配置文件所在的目录下,执行命令就好了:

命令:java -jar mybatis-generator-core-1.3.2.jar -configfile config.xml -overwrite

接下来就生成好了test包:

 

以上方式是独立于开发工具使用,也可以开发工具插件的形式使用。

IDEA插件方式可参考博客:https://www.cnblogs.com/yjmyzz/p/4210554.html

Eclipse插件方式可参考博客:https://blog.csdn.net/pucao_cug/article/details/64499355

posted @ 2017-02-18 15:05  一线大码  Views(1302)  Comments(0Edit  收藏  举报