zoukankan      html  css  js  c++  java
  • 使用 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

  • 相关阅读:
    AcWing242一个简单的整数问题1(差分+树状数组)
    AcWing241楼兰图腾(树状数组)
    AcWing802区间和
    离散化
    AcWing1250格子游戏(并查集)
    vijos难解的问题(LIS最长上升子序列)
    动态规划dp——LIS(最长上升子序列)、LCS(最长公共子序列)
    约数、素数、gcd(最大公约数)、lcm(最小公倍数)
    vijos拓扑编号(逆向拓扑排序+优先队列)
    洛谷P1137旅行计划(拓扑排序+简单dp)
  • 原文地址:https://www.cnblogs.com/wbxk/p/6413233.html
Copyright © 2011-2022 走看看