zoukankan      html  css  js  c++  java
  • MyBatis代码生成工具mybatis-generator在Myeclipse10中的使用

    一、在MyEclipse安装目录下新建myPlugin目录,如下图所示:

    二、将 mybatis.zip 里面的文件放在MyEclipse的dropins目录下,如下图所示:

    三、在Myeclipse安装目录dropins下,新建mybatis.link文件,并在文件中指明mybatis-generator放置的路径:

    四、将Mybatis需要的 mysql-connector-java-5.1.23.jar 等jar包引入项目;

    五、在项目中放入generatorConfig.xml 文件并做相应修改:

    <?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" >
    
    <!-- 此文件只是mybatis 的数据库自动生成映射文件,实体类,接口等方法的,发布时,不用提交此文件,也可删除 -->
    
    <generatorConfiguration>
        <!-- 引用的jdbc的类路径,这里将jdbc jar和generator的jar包放在一起了 -->
        <classPathEntry location="D:Workspacesdayhrlibmysql-connector-java-5.1.23.jar"/>
        <context id="context1" targetRuntime="MyBatis3Simple">
            
            <commentGenerator>
                <!-- 是否去除自动生成的注释 true:是 : false:否 -->
                <property name="suppressAllComments" value="false"/>
                <property name="suppressDate" value="true" /> <!-- 是否生成注释代时间戳-->  
              </commentGenerator>
            
            <!-- 指定的jdbc的连接信息 -->
            <jdbcConnection 
                driverClass="com.mysql.jdbc.Driver" 
                connectionURL="jdbc:mysql://172.1.1.200:3306/你的数据库名" 
                userId="root" 
                password="root" />
            
            <!-- 类型转换 -->  
            <javaTypeResolver>  
                <!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.) -->  
                <property name="forceBigDecimals" value="false"/>  
            </javaTypeResolver>  
            
            <!-- 生成实体类地址 Model -->       
            <javaModelGenerator targetPackage="com.dayhr.web.module.hr.sm.salary.model" targetProject="dayhr_appsrc" >
                <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->  
                <property name="enableSubPackages" value="false"/>  
                <!-- 是否针对string类型的字段在set的时候进行trim调用 -->  
                <property name="trimStrings" value="true"/>  
            </javaModelGenerator>
            
            <!-- 生成map.xml文件 XML -->     
            <sqlMapGenerator targetPackage="com.dayhr.web.module.hr.sm.salary.mapper" targetProject="dayhr_appsrc" >
                <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->  
                <property name="enableSubPackages" value="false" /> 
            </sqlMapGenerator>
            
            <!-- 生成map.xml对应client,也就是接口DAO -->  
            <javaClientGenerator targetPackage="com.dayhr.web.module.hr.sm.salary.mapper" targetProject="dayhr_appsrc" type="XMLMAPPER" >
                <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->  
                <property name="enableSubPackages" value="false" /> 
            </javaClientGenerator>
            
            <!-- 
                schema:数据库名 
                tableName:对应的数据库表 
                domainObjectName:要生成的实体类 
                enable*ByExample: 是否生成 example类   
            --> 
            <table schema="dayhr_db" tableName="t_hr_sm_salschemabase" domainObjectName="Salschemabase" 
                enableCountByExample="false"  enableDeleteByExample="false" 
                enableSelectByExample="false"  enableUpdateByExample="false">
                
                <!-- 忽略列,不生成bean 字段 -->  
                <ignoreColumn column="FRED" />  
                <!-- 指定列的java数据类型 -->  
                <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" /> 
            </table>
            
        </context>
    </generatorConfiguration>

    六、重启Myeclipse,鼠标右击generatorConfig.xml 文件,在弹出的菜单中选择Generate MyBatis/iBATIS Artifacts 即可生成所需文件:

  • 相关阅读:
    多种语言求n的阶乘
    (转)Bullet 物理引擎 简析[1]
    (转)Bullet 引擎 详解 DBVT 分析
    (转载)C Runtime Library(MSVCRT)来历
    (转)角色蒙皮
    计算两向量的旋转角(转)
    lua中文教程(第二章 类型和值)
    lua中文教程(第一章 起点)
    (转)Bullet 引擎 详解 碰撞事件 回调函数
    (转)Bullet 3D 物理引擎 简析(2)
  • 原文地址:https://www.cnblogs.com/mingyue1818/p/4074699.html
Copyright © 2011-2022 走看看