mybatis-generatorConfig.xml【自留】

/resource/generatorConfig.xml

需要修改的部分:

  1. classPathEntry路径(jar包路径)
  2. 数据库连接池(包含用户密码)
  3. pojo dao mapper路径
  4. 防止生成WithBOLBs传送门:对数据库text的处理
  5. 生成的具体表
    传送门:xml头部连接DTD爆红报错
    传送门:具体配置说明

DOCTYPE generatorConfiguration
        PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

<generatorConfiguration>
    
    <classPathEntry location="D:\Environment\mysql-driver\mysql-connector-java-5.1.6.jar" />

    <context id="DB2Tables" targetRuntime="MyBatis3">

        
        <plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin" />

        <commentGenerator>
            <property name="suppressAllComments" value="true"/>
        commentGenerator>

        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8"
                        userId="root"
                        password="123456">
        jdbcConnection>

        <javaTypeResolver >
            <property name="forceBigDecimals" value="false" />
        javaTypeResolver>

        <javaModelGenerator targetPackage="com.graduation.menu.pojo" targetProject="src/main/java">
            <property name="enableSubPackages" value="true" />
            
        javaModelGenerator>

        <sqlMapGenerator targetPackage="mappers"  targetProject="src/main/resources">
            <property name="enableSubPackages" value="true" />
        sqlMapGenerator>

        <javaClientGenerator type="XMLMAPPER" targetPackage="com.graduation.menu.dao"  targetProject="src/main/java">
            <property name="enableSubPackages" value="true" />
        javaClientGenerator>

        <table tableName="mall_order" domainObjectName="Order" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false" enableUpdateByExample="false"/>
        <table tableName="mall_order_item" domainObjectName="OrderItem" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false" enableUpdateByExample="false"/>

    context>
generatorConfiguration>

你可能感兴趣的:(数据库,mybatis,xml,java)