当前位置: 代码迷 >> 综合 >> generator.xml完整模板
  详细解决方案

generator.xml完整模板

热度:54   发布时间:2023-10-27 10:17:03.0

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

    -- 指定数据连接驱动jar地址
    <classPathEntry location="F:\Program Files\27819\repository\mysql\mysql-connector-java\5.1.30\mysql-connector-java-5.1.30.jar" />

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

        <!-- jdbc连接 -->
        <jdbcConnection driverClass="${driver}"
                        connectionURL="${url}" userId="${user}"
                        password="${password}" />

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

        <!-- 生成实体类地址 -->
        <javaModelGenerator targetPackage="com.test.entity"
                            targetProject="./src/main/java" >
            <!-- 是否在当前路径下新加一层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="mapper"
                         targetProject="./src/main/resources" >
            <!-- 是否在当前路径下新加一层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.test.dao"
                             targetProject="./src/main/java" type="XMLMAPPER" >
            <!-- 是否在当前路径下新加一层schema,eg:fase路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
            <property name="enableSubPackages" value="false" />
        </javaClientGenerator>

        <!-- 配置表信息 -->
        <table tableName="t_comment" domainObjectName="Comment"
        enableCountByExample="false" enableUpdateByExample="false"
         enableDeleteByExample="false" enableSelectByExample="false"
         selectByExampleQueryId="false" />
            <!-- schema即为数据库名 tableName为对应的数据库表 domainObjectName是要生成的实体类 enable*ByExample
                是否生成 example类   -->
 
    </context>
</generatorConfiguration>

 

 

这是可以实现的generator.xml结构,properties配置文件、jar电脑上配置完毕,使用时只需要  <!-- 生成实体类地址 -->   <!-- 生成mapxml文件 -->  <!-- 生成mapxml对应client,也就是接口dao -->        <!-- 配置表信息 -->

 

pom.xml加上配置

  1.   <dependency>  
  2.             <groupId>org.mybatis.generator</groupId>  
  3.             <artifactId>mybatis-generator-core</artifactId>  
  4.             <version>1.3.2</version>  
  5.         </dependency> 
  1.   <plugin>  
  2.                 <groupId>org.mybatis.generator</groupId>  
  3.                 <artifactId>mybatis-generator-maven-plugin</artifactId>  
  4.                 <version>1.3.2</version>  
  5.                 <configuration>  
  6.                     <verbose>true</verbose>  
  7.                     <overwrite>true</overwrite>  
  8.                 </configuration>  
  9.             </plugin>  
  相关解决方案