利用Maven逆向工程生成mybatis映射文件
生活随笔
收集整理的這篇文章主要介紹了
利用Maven逆向工程生成mybatis映射文件
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
一,pom.xml
注意修改逆向工程配置文件的路徑
<build><pluginManagement><plugins><plugin><groupId>org.mybatis.generator</groupId><artifactId>mybatis-generator-maven-plugin</artifactId><version>1.3.2</version><dependencies><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.35</version></dependency></dependencies><configuration><!--配置文件的路徑 --><configurationFile>src/main/resources/generatorConfig.xml</configurationFile><overwrite>true</overwrite></configuration></plugin></plugins></pluginManagement></build>二,修改generatorConfig.xml文件
注意修改數(shù)據(jù)庫連接的URL,用戶名、密碼,修改生成model的位置,修改生成mapping文件的位置,修改哪些表需要逆向
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfigurationPUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN""http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorConfiguration><context id="test" targetRuntime="MyBatis3"><plugin type="org.mybatis.generator.plugins.EqualsHashCodePlugin"></plugin><plugin type="org.mybatis.generator.plugins.SerializablePlugin"></plugin><plugin type="org.mybatis.generator.plugins.ToStringPlugin"></plugin><commentGenerator><!-- 這個(gè)元素用來去除指定生成的注釋中是否包含生成的日期 false:表示保護(hù) --><!-- 如果生成日期,會(huì)造成即使修改一個(gè)字段,整個(gè)實(shí)體類所有屬性都會(huì)發(fā)生變化,不利于版本控制,所以設(shè)置為true --><property name="suppressDate" value="true" /><!-- 是否去除自動(dòng)生成的注釋 true:是 : false:否 --><property name="suppressAllComments" value="true" /></commentGenerator><!--數(shù)據(jù)庫鏈接URL,用戶名、密碼 --><jdbcConnection driverClass="com.mysql.jdbc.Driver"connectionURL="jdbc:mysql://localhost:3306/springbootdb?useUnicode=true&characterEncoding=utf8" userId="root"password="a123"></jdbcConnection><javaTypeResolver><!-- This property is used to specify whether MyBatis Generator shouldforce the use of java.math.BigDecimal for DECIMAL and NUMERIC fields, --><property name="forceBigDecimals" value="false" /></javaTypeResolver><!-- 生成模型的包名和位置 --><javaModelGenerator targetPackage="org.cc.bean"targetProject="src/main/java"><property name="enableSubPackages" value="true" /><property name="trimStrings" value="true" /></javaModelGenerator><!-- 生成映射文件的包名和位置 --><sqlMapGenerator targetPackage="mapping"targetProject="src/main/resources"><property name="enableSubPackages" value="true" /></sqlMapGenerator><!-- 生成DAO的包名和位置 --><javaClientGenerator type="XMLMAPPER"targetPackage="org.cc.dao"targetProject="src/main/java"><property name="enableSubPackages" value="true" /></javaClientGenerator><!-- 要生成哪些表 --><table tableName="`goods`" domainObjectName="Goods" enableCountByExample="false"enableUpdateByExample="false" enableDeleteByExample="false"enableSelectByExample="false" selectByExampleQueryId="false"><generatedKey column="id" sqlStatement="Mysql" identity="true"/></table></context> </generatorConfiguration>三,使用maven生成model和mapping
選中項(xiàng)目》右鍵RunAs》輸入mybatis-generator:generate
刷新目錄可以看到生了bean,dao和mapping文件
注意再次執(zhí)行會(huì)在mapping文件后面添加內(nèi)容,會(huì)重復(fù),所以再次執(zhí)行前先將mapping文件刪除。
總結(jié)
以上是生活随笔為你收集整理的利用Maven逆向工程生成mybatis映射文件的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 德电中国在自动驾驶技术的解决方案如何做的
- 下一篇: 孙和张怎么结合取名字?