首页 > 代码库 > maven插件mybatis-generator生成代码配置

maven插件mybatis-generator生成代码配置

1.新建maven项目

2.pom.xml文件中添加插件

  代码:

        <plugins>
            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.2</version>
                 <configuration>
                    <verbose>true</verbose>
                    <overwrite>true</overwrite>
                </configuration>
            </plugin>
        </plugins>

 也可以  选中pom文件 右键--》添加插件 --》弹出对话框 --》点击select --》 选择mybatis-generator-maven-plugin(先将插件作为依赖加入pom是前提)

然后加入代码:

            <configuration>

                     <!--允许移动生成的文件-->

                    <verbose>true</verbose>

                    <!--允许覆盖生成的文件-->
                    <overwrite>true</overwrite>
                </configuration>

3.在项目的/src/main/resources(默认目录)的文件目录下加入generateConfig.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="E:/.m2/repository/postgresql/postgresql/9.1-901.jdbc4/postgresql-9.1-901.jdbc4.jar" />
    <context id="DB2Tables" targetRuntime="MyBatis3">
      <commentGenerator>
        <property name="suppressAllComments" value="http://www.mamicode.com/true"/>
      </commentGenerator>
      <jdbcConnection driverClass="org.postgresql.Driver"
            connectionURL="jdbc:postgresql://42.101.00.61:5533/soulagou_vshop"
            userId="*******" password="*****">
        </jdbcConnection>
      <javaTypeResolver>
         <property name="forceBigDecimals" value="http://www.mamicode.com/false"/>
      </javaTypeResolver>
      
      <javaModelGenerator targetPackage="com.mybatis.model" targetProject="src/main/java">
          <property name="enableSubPackages" value="http://www.mamicode.com/true"/>
          <property name="trimStrings" value="http://www.mamicode.com/true"/>
      </javaModelGenerator>
       
      <sqlMapGenerator targetPackage="sqlmap" targetProject="src/main/resources">
           <property name="enableSubPackages" value="http://www.mamicode.com/true"/>
      </sqlMapGenerator>
       
      <javaClientGenerator type="XMLMAPPER" targetPackage="com.mybatis.mapper" targetProject="src/main/java">
        <property name="enableSubPackages" value="http://www.mamicode.com/true"/>
      </javaClientGenerator>
      <table  tableName="ITEM" domainObjectName="Item" enableCountByExample="false" enableSelectByExample="false" enableUpdateByExample="false" enableDeleteByExample="false">
       
      </table>
    </context>
      
    </generatorConfiguration>


夜深了,此处注释省略。。。。

4:项目 右键--》run as --》 maven bulid --》弹出对话框 --》在goals中输入mybatis-generator:generate 或者 点击select --》选择你的mybatis插件 --》apply --》run


5:选择项目 按 F5 刷新项目 出现生成的代码


6:开个啤酒庆祝一下吧,从此省事了



maven插件mybatis-generator生成代码配置