eclipse安裝mybatis-generator
利用mybatis-generator可以自動生成程式碼
mybatis-generator的安裝方法有很多種:
官方文件:
一 、eclipse外掛 方式
eclipse外掛:
(1)eclipse help -->eclipse marketplace -->輸入:mybatis-generator搜尋外掛
(2) generatorConfig.xml配置檔案
在src/main/resources下建立generatorConfig.xml檔案,內容如下:
注意:mybatis-generator以eclipse外掛方式安裝時,generatorConfig.xml配置檔案裡的targetProject="mavenSSM"為專案名稱
其中generatorConfig.xml的位置,大家根據實際情況自行調整
(3)自動生成檔案
如果是在eclipse 中,選擇generatorConfig.xml檔案,擊右鍵先擇"Generator MyBatis/iBATIS Artifacts"
二 、maven外掛 方式
(maven外掛安裝請參考我的另一篇文章)
(1)下載mybatis-generator
下載地址:
下載後解壓並把lib目錄下的Jar包,複製到MAVEN安裝路徑的lib目錄下,我的MAVEN安裝目錄為 D:\app\java\apache-maven-3.3.9\lib
(2)在pom.xml中新增plugin
(3) 建立generatorConfig.xml檔案
generatorConfig.xml檔案內容,除了targetProject標籤的值不同外,其它與eclipse外掛方式的generatorConfig.xml一樣,
targetProject改為絕對路徑:
targetProject="D:\app\java\eclipse\workspace\mavenSSM\src\main\java"
(4)自動生成檔案
如果是在eclipse 中,選擇generatorConfig.xml檔案,擊右鍵先擇Run AS——>Maven Build… ——>在Goals框中輸入:mybatis-generator:generate
mybatis-generator的安裝方法有很多種:
MyBatis Generator (MBG) can be run in the following ways:
- From the with an XML configuration
- As an with an XML configuration
- As a
- From another with an XML configuration
- From another with a Java based configuration
- As an
官方文件:
一 、eclipse外掛 方式
eclipse外掛:
(1)eclipse help -->eclipse marketplace -->輸入:mybatis-generator搜尋外掛
(2) generatorConfig.xml配置檔案
在src/main/resources下建立generatorConfig.xml檔案,內容如下:
點選(此處)摺疊或開啟
-
<?xml version="1.0" encoding="UTF-8"?>
-
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "">
-
<generatorConfiguration>
-
<!--資料庫驅動-->
-
<classPathEntry location="D:\\app\java\apache-maven-3.3.9\repo\mysql\mysql-connector-java\5.1.30\mysql-connector-java-5.1.30.jar"/>
-
<context id="context1">
-
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
-
connectionURL="jdbc:mysql://10.50.8.19:3306/test" userId="root"
-
password="biostime123"/>
-
<javaModelGenerator targetPackage="com.jiang.mavenSSM.entity"
-
targetProject="mavenSSM">
-
<property name="enableSubPackages" value="true"/>
-
<property name="trimStrings" value="true"/>
-
</javaModelGenerator>
-
<sqlMapGenerator targetPackage="com.jiang.mavenSSM.entity.xml"
-
targetProject="mavenSSM">
-
<property name="enableSubPackages" value="true"/>
-
</sqlMapGenerator>
-
<javaClientGenerator targetPackage="com.jiang.mavenSSM.mapper"
-
targetProject="mavenSSM" type="XMLMAPPER">
-
<property name="enableSubPackages" value="true"/>
-
</javaClientGenerator>
-
-
-
<table tableName="user_t" domainObjectName="FeeBase"
-
enableCountByExample="false" enableUpdateByExample="false"
-
enableDeleteByExample="false" enableSelectByExample="false"
-
selectByExampleQueryId="false">
-
<!--<columnRenamingRule searchString="^D_"
-
replaceString=""/>-->
-
<!--<columnOverride column="???" property="???" /> -->
-
</table>
-
</context>
- </generatorConfiguration>
其中generatorConfig.xml的位置,大家根據實際情況自行調整
(3)自動生成檔案
如果是在eclipse 中,選擇generatorConfig.xml檔案,擊右鍵先擇"Generator MyBatis/iBATIS Artifacts"
二 、maven外掛 方式
(maven外掛安裝請參考我的另一篇文章)
(1)下載mybatis-generator
下載地址:
下載後解壓並把lib目錄下的Jar包,複製到MAVEN安裝路徑的lib目錄下,我的MAVEN安裝目錄為 D:\app\java\apache-maven-3.3.9\lib
(2)在pom.xml中新增plugin
點選(此處)摺疊或開啟
-
<build>
-
……
-
<plugins>
-
……
-
<plugin>
-
<groupId>org.mybatis.generator</groupId>
-
<artifactId>mybatis-generator-maven-plugin</artifactId>
-
<version>1.3.4</version>
-
<configuration>
-
<configurationFile>src/main/resources/mybatis-generator/generatorConfig.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.4</version>
-
</dependency>
-
</dependencies>
-
</plugin>
-
</plugins>
- </build>
(3) 建立generatorConfig.xml檔案
generatorConfig.xml檔案內容,除了targetProject標籤的值不同外,其它與eclipse外掛方式的generatorConfig.xml一樣,
targetProject改為絕對路徑:
targetProject="D:\app\java\eclipse\workspace\mavenSSM\src\main\java"
(4)自動生成檔案
如果是在eclipse 中,選擇generatorConfig.xml檔案,擊右鍵先擇Run AS——>Maven Build… ——>在Goals框中輸入:mybatis-generator:generate
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10995764/viewspace-2124352/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- eclipse的安裝Eclipse
- 【Eclipse】--Eclipse簡介和安裝Eclipse
- Ubuntu下安裝eclipseUbuntuEclipse
- windows下安裝Python和在eclipse安裝pydev外掛以及配置eclipseWindowsPythonEclipsedev
- Eclipse Mars 如何安裝svnEclipse
- eclipse安裝及配置pydevEclipsedev
- 如何下載、安裝eclipseEclipse
- eclipse marketplace外掛安裝Eclipse
- Eclipse 安裝Groovy外掛Eclipse
- Debian下安裝EclipseEclipse
- Eclipse安裝簡要指南Eclipse
- Eclipse外掛安裝(一)Eclipse
- Eclipse外掛的安裝Eclipse
- Eclipse程式安裝包下載Eclipse
- eclipse 安裝svn外掛Eclipse
- Mybatis-GeneratorMyBatis
- Eclipse-安裝SVN外掛Eclipse
- Activiti之eclipse外掛安裝Eclipse
- Eclipse 中 安裝 SVN 外掛Eclipse
- eclipse安裝ADT外掛Eclipse
- Eclipse JEE 安裝JBPM 4.4 GPDEclipse
- Eclipse外掛安裝總結Eclipse
- Eclipse下安裝Flex外掛EclipseFlex
- FreeMarker Eclipse Plugin的安裝!EclipsePlugin
- Eclipse+PyDev 安裝和配置Eclipsedev
- eclipse 4.8安裝fat報錯Eclipse
- eclipse安裝教程配置 2021最新eclipse教程Eclipse
- 在Ubuntu環境下安裝eclipseUbuntuEclipse
- mac 下eclipse安裝lombok外掛MacEclipseLombok
- 安裝JDK和Eclipse詳細教程JDKEclipse
- Eclipse安裝Spket外掛並破解Eclipse
- eclipse安裝color theme外掛Eclipse
- activiti在eclipse中的安裝配置Eclipse
- Mac上eclipse安裝SVN+JavaHLMacEclipseJava
- eclipse中ext外掛安裝方法Eclipse
- Weblogic和eclipse安裝和配置WebEclipse
- Poechant快速安裝配置教程:Eclipse + SVNEclipse
- eclipse3.0的安裝問題?Eclipse