首页 > 代码库 > 自动生成mybatis的model,mapper,xml工具的使用

自动生成mybatis的model,mapper,xml工具的使用

首先把这三个文件放到一个目录里,我是放到了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:@124.237.121.124:1521:ORADB" userId="album" password="sdfwetertertgdfgertrttt">  
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包:

技术分享

 

自动生成mybatis的model,mapper,xml工具的使用