zoukankan      html  css  js  c++  java
  • mybatis-generator 代码自动生成工具

    在maven配置文件pom.xml中添加依赖

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.test</groupId>
      <artifactId>mybatis_generator</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <name>mybatis_generator</name>
      
      <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.35</version>
            </dependency>
            <dependency>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-core</artifactId>
                <version>1.3.2</version>
            </dependency>
        </dependencies>
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <groupId>org.mybatis.generator</groupId>
                        <artifactId>mybatis-generator-maven-plugin</artifactId>
                        <version>1.3.2</version>
                        <configuration>
                             <!--配置文件的路径-->
                             <configurationFile>${basedir}/src/main/resources/generatorConfig.xml</configurationFile> 
                             <overwrite>true</overwrite>
    <verbose>true</verbose> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>

    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">
    <generatorConfiguration>
    
      <classPathEntry    location="D:workspaceBlogWebContentWEB-INFlibmysql-connector-java-5.1.26-bin.jar"/>
      
      <context id="context1">
        <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://172.16.163.140:3306/tcserver" userId="tcserveruser" 
            	password="123456" />
         <javaModelGenerator targetPackage="com.osp.ucenter.test" targetProject="E:ospucentersrcmainjava">
            <property name="enableSubPackages" value="true"/>
            <property name="trimStrings" value="true"/>
         </javaModelGenerator>
        
          <sqlMapGenerator targetPackage="com.osp.ucenter.test" targetProject="E:ospucentersrcmainjava">
              <property name="enableSubPackages" value="true"/>
          </sqlMapGenerator>
            
          <javaClientGenerator type="XMLMAPPER" targetPackage="com.osp.ucenter.test" targetProject="E:ospucentersrcmainjava">
              <property name="enableSubPackages" value="true"/>
          </javaClientGenerator>  
            
    
         <table tableName="RED_PACKET" domainObjectName="RedPacket" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" 
                enableSelectByExample="false" selectByExampleQueryId="false">
         </table>
     
         
      </context>
    </generatorConfiguration>

    运行方法:在eclipse 中,选择pom.xml文件,击右键先择Run AS——>Maven Build… ——>在Goals框中输入:mybatis-generator:generate

  • 相关阅读:
    Hadoop 集群搭建步骤
    Linux 常见的命令
    Mysql 的事物理解
    数据库的理论知识
    IDEA debug
    junit 测试
    Mysql 索引的知识
    JSON解析
    java 多线程
    Java集合框架关系图
  • 原文地址:https://www.cnblogs.com/zhangmingcheng/p/9459036.html
Copyright © 2011-2022 走看看