mybatiGenerator

    <?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="init.properties"/>  

        <!-- 指定数据连接驱动jar地址 -->
        <classPathEntry location="${classPath}" />  

        <!-- 一个数据库一个context -->
        <context id="infoGuardian">
            <!-- 注释 -->
            <commentGenerator >
                <property name="suppressAllComments" value="false"/><!-- 是否取消注释 -->
                <property name="suppressDate" value="true" /> <!-- 是否生成注释代时间戳-->
            </commentGenerator>  

            <!-- jdbc连接 -->
            <jdbcConnection driverClass="${jdbc_driver}"
                connectionURL="${jdbc_url}" userId="${jdbc_user}"
                password="${jdbc_password}" />  

            <!-- 类型转换 -->
            <javaTypeResolver>
                <!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.) -->
                <property name="forceBigDecimals" value="false"/>
            </javaTypeResolver>  

            <!-- 生成实体类地址 -->
            <javaModelGenerator targetPackage="com.oop.eksp.user.model"
                targetProject="${project}" >
                <!-- 是否在当前路径下新加一层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>  

            <!-- 生成mapxml文件 -->
            <sqlMapGenerator targetPackage="com.oop.eksp.user.data"
                targetProject="${project}" >
                <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
                <property name="enableSubPackages" value="false" />
            </sqlMapGenerator>  

            <!-- 生成mapxml对应client,也就是接口dao -->
            <javaClientGenerator targetPackage="com.oop.eksp.user.data"
                targetProject="${project}" type="XMLMAPPER" >
                <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
                <property name="enableSubPackages" value="false" />
            </javaClientGenerator>  

            <!-- 配置表信息 -->
            <table schema="${jdbc_user}" tableName="s_user"
                domainObjectName="UserEntity" enableCountByExample="false"
                enableDeleteByExample="false" enableSelectByExample="false"
                enableUpdateByExample="false">
                <!-- schema即为数据库名 tableName为对应的数据库表 domainObjectName是要生成的实体类 enable*ByExample
                    是否生成 example类   -->  

                <!-- 忽略列,不生成bean 字段 -->
                <ignoreColumn column="FRED" />
                <!-- 指定列的java数据类型 -->
                <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" />
            </table>  

        </context>
    </generatorConfiguration>  
    #Mybatis Generator configuration
    project = EKSP
    classPath=E:/workplace/EKSP/WebContent/WEB-INF/lib/ojdbc14.jar
    jdbc_driver = oracle.jdbc.driver.OracleDriver
    jdbc_url=jdbc:oracle:thin:@127.0.0.1:1521:orcl
    jdbc_user=INFOGUARDIAN
    jdbc_password=info_idap132  
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >
  3. <generatorConfiguration>
  4. <!-- 引入配置文件 -->
  5. <properties resource="init.properties"/>
  6. <!-- 指定数据连接驱动jar地址 -->
  7. <classPathEntry location="${classPath}" />
  8. <!-- 一个数据库一个context -->
  9. <context id="infoGuardian">
  10. <!-- 注释 -->
  11. <commentGenerator >
  12. <property name="suppressAllComments" value="false"/><!-- 是否取消注释 -->
  13. <property name="suppressDate" value="true" /> <!-- 是否生成注释代时间戳-->
  14. </commentGenerator>
  15. <!-- jdbc连接 -->
  16. <jdbcConnection driverClass="${jdbc_driver}"
  17. connectionURL="${jdbc_url}" userId="${jdbc_user}"
  18. password="${jdbc_password}" />
  19. <!-- 类型转换 -->
  20. <javaTypeResolver>
  21. <!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.) -->
  22. <property name="forceBigDecimals" value="false"/>
  23. </javaTypeResolver>
  24. <!-- 生成实体类地址 -->
  25. <javaModelGenerator targetPackage="com.oop.eksp.user.model"
  26. targetProject="${project}" >
  27. <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
  28. <property name="enableSubPackages" value="false"/>
  29. <!-- 是否针对string类型的字段在set的时候进行trim调用 -->
  30. <property name="trimStrings" value="true"/>
  31. </javaModelGenerator>
  32. <!-- 生成mapxml文件 -->
  33. <sqlMapGenerator targetPackage="com.oop.eksp.user.data"
  34. targetProject="${project}" >
  35. <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
  36. <property name="enableSubPackages" value="false" />
  37. </sqlMapGenerator>
  38. <!-- 生成mapxml对应client,也就是接口dao -->
  39. <javaClientGenerator targetPackage="com.oop.eksp.user.data"
  40. targetProject="${project}" type="XMLMAPPER" >
  41. <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
  42. <property name="enableSubPackages" value="false" />
  43. </javaClientGenerator>
  44. <!-- 配置表信息 -->
  45. <table schema="${jdbc_user}" tableName="s_user"
  46. domainObjectName="UserEntity" enableCountByExample="false"
  47. enableDeleteByExample="false" enableSelectByExample="false"
  48. enableUpdateByExample="false">
  49. <!-- schema即为数据库名 tableName为对应的数据库表 domainObjectName是要生成的实体类 enable*ByExample
  50. 是否生成 example类   -->
  51. <!-- 忽略列,不生成bean 字段 -->
  52. <ignoreColumn column="FRED" />
  53. <!-- 指定列的java数据类型 -->
  54. <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" />
  55. </table>
  56. </context>
  57. </generatorConfiguration>
时间: 2024-10-29 19:08:02

mybatiGenerator的相关文章

SpringBoot集成mybatis和mybatis generator

利用搭建的基本的spring boot框架,集成 mybatis + generator 1.设置 maven 的相关配置: File  - setting - maven 设置 Maven home directory 和 setings file.(Tips:maven的使用涉及到hosts文件的内容) 2.在pom文件中添加相关依赖和插件的配置信息 <dependencies> <dependency> <groupId>org.springframework.b