溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

IntelliJ IDEA(2019)之mybatis反向生成的實(shí)現(xiàn)

發(fā)布時(shí)間:2020-08-19 13:57:02 來源:腳本之家 閱讀:229 作者:波波烤鴨 欄目:編程語言

mybatis的逆向工程是非常便捷的操作,能夠顯著的提高我們的開發(fā)效率,之前介紹過Eclipse的操作,本文來介紹下在idea中怎么處理。

mybatis逆向工程

1.配置文件

在resources目錄下創(chuàng)建配置文件,具體如下:

<?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>
 <!-- 數(shù)據(jù)庫的驅(qū)動(dòng)包路徑 -->
 <classPathEntry location="C:\Users\dengp\.m2\repository\mysql\mysql-connector-java\5.1.27\mysql-connector-java-5.1.27.jar" />

 <context id="DB2Tables" targetRuntime="MyBatis3">
 <!-- 去掉生成文件中的注釋 -->
 <commentGenerator>
 <property name="suppressAllComments" value="true" />
 </commentGenerator>
 <!-- 數(shù)據(jù)庫鏈接URL、用戶名、密碼 --> 
 <jdbcConnection driverClass="com.mysql.jdbc.Driver" 
  connectionURL="jdbc:mysql://localhost:3306/dpb-srm"
  userId="root" 
  password="123456"> 
 </jdbcConnection> 
 <!-- <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" 
   connectionURL="jdbc:oracle:thin:@localhost:1521:XE" 
   userId="car" 
   password="car"> 
 </jdbcConnection> -->
 
 <javaTypeResolver >
  <property name="forceBigDecimals" value="false" />
 </javaTypeResolver>
 <!-- 生成模型的包名和位置 當(dāng)前項(xiàng)目下 .\--> 
 <javaModelGenerator targetPackage="com.sxt.sys.pojo" targetProject=".\src\main\java">
  <!-- 是否在當(dāng)前路徑下新加一層schema,eg:fase路徑com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] --> 
  <property name="enableSubPackages" value="false" />
  <property name="trimStrings" value="true" />
 </javaModelGenerator>
 <!-- 生成的映射文件包名和位置 -->
 <sqlMapGenerator targetPackage="mapper" targetProject=".\src\main\resources">
  <property name="enableSubPackages" value="false" />
 </sqlMapGenerator>
 <!-- 生成DAO的包名和位置 --> 
 <javaClientGenerator type="XMLMAPPER" targetPackage="com.sxt.sys.mapper" targetProject=".\src\main\java">
  <property name="enableSubPackages" value="false" />
 </javaClientGenerator>
 

  <table tableName="t_emp" domainObjectName="Emp" schema=""></table>
  <table tableName="t_basic" domainObjectName="Basic" schema=""></table>
  <table tableName="t_dept" domainObjectName="Dept" schema=""></table>
  <table tableName="t_role" domainObjectName="Role" schema=""></table> 
  <table tableName="t_user" domainObjectName="User" schema=""></table> 
  <table tableName="t_menu" domainObjectName="Menu" schema=""></table>
  

 
 </context>
</generatorConfiguration>

2.插件依賴

在pom.xml文件中添加mybatis的generator插件。具體如下:

 <plugin>
 <groupId>org.mybatis.generator</groupId>
 <artifactId>mybatis-generator-maven-plugin</artifactId>
 <version>1.3.2</version>
 <configuration>
 <!--關(guān)聯(lián)上面的配置文件 -->
 <configurationFile>src/main/resources/mybatis-generator/generatorConfig-sys.xml</configurationFile>
 <verbose>true</verbose>
 <overwrite>true</overwrite>
 </configuration>
 <executions>
 <execution>
  <id>Generate MyBatis Artifacts</id>
  <goals>
  <goal>generate</goal>
  </goals>
 </execution>
 </executions>
 <dependencies>
 <dependency>
  <groupId>org.mybatis.generator</groupId>
  <artifactId>mybatis-generator-core</artifactId>
  <version>1.3.2</version>
 </dependency>
 </dependencies>
</plugin>

3.反向生成

生成的方式有多種,我們此處介紹一種簡便常用的方式,直接通過idea的plugin方式生成,如圖。

IntelliJ IDEA(2019)之mybatis反向生成的實(shí)現(xiàn)

生成成功

IntelliJ IDEA(2019)之mybatis反向生成的實(shí)現(xiàn)

IntelliJ IDEA(2019)之mybatis反向生成的實(shí)現(xiàn)

最后生成好后將插件注釋掉即可

IntelliJ IDEA(2019)之mybatis反向生成的實(shí)現(xiàn)

好了~搞定。以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI