1. 程式人生 > >Idea基於maven專案建立mybatis逆向工程

Idea基於maven專案建立mybatis逆向工程

1.開啟pom.xml檔案,新增如下配置:

<!-- mybatis逆向工程 -->
<plugin>
<!--
  用maven mybatis外掛
  如果不在plugin裡面新增依賴包得引用的話,會找不到相關得jar包,
  在plugin外部得jar包,他不會去找到並執行,
  所以要把plugin執行依賴得jar配置都放在裡面
  -->
<groupId>org.mybatis.generator</groupId>
  <artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.5</version> <configuration> <!--配置檔案的位置,Personal-GeneratorConfig.xml檔名字可以隨便起--><configurationFile>src/main/resources/spring/Personal-GeneratorConfig.xml</configurationFile> <verbose>true</verbose> <overwrite>true</overwrite>
</configuration> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>
mybatis</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.41</version> </dependency> </dependencies> </plugin>

2. 建立Personal-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>
    <context id="context1" targetRuntime="MyBatis3">
        <commentGenerator>
<!-- 去除自動生成的註釋 -->
<property name="suppressAllComments" value="true" />
        </commentGenerator>
<!-- 資料庫連線配置 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/lanqianming"
userId="root"
password="root" />
<!-- 非必需,型別處理器,在資料庫型別和java型別之間的轉換控制-->
<javaTypeResolver>
            <property name="forceBigDecimals" value="false"/>
        </javaTypeResolver>
<!--配置生成的實體包
            targetPackage:生成的實體包位置,預設存放在src目錄下
            targetProject:目標工程名
         -->
<javaModelGenerator targetPackage="com.bubbles.entity"
targetProject="src/main/java" />
<!-- 實體包對應對映檔案位置及名稱,預設存放在src目錄下 -->
<sqlMapGenerator targetPackage="com.bubbles.dao" targetProject="src/main/java" />
<!-- 配置表
            schema:不用填寫
            tableName: 表名
            enableCountByExample、enableSelectByExample、enableDeleteByExample、enableUpdateByExample、selectByExampleQueryId:
            去除自動生成的例子
        -->
<table schema="" tableName="user" enableCountByExample="false" enableSelectByExample="false"
enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" >
        </table>
    </context>
</generatorConfiguration>

3. 點選選單Run->Edit Configuration,然後在彈出窗體的左上角,點選+->maven,會出現下面窗體,指令:mybatis-generator:generate -e   然後點選apply,並確定

 

4. 最後run剛才新建的那個maven即可,最後生成的結構如下