您好,登錄后才能下訂單哦!
這篇文章主要介紹springboot如何集成mybatis官方生成器,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
<!-- mybatis generator 自動(dòng)生成代碼插件 --> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.7</version> <configuration> <configurationFile>src/main/resources/generator/generator-config.xml</configurationFile> <overwrite>true</overwrite> <verbose>true</verbose> </configuration> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.22</version> </dependency> </dependencies> </plugin>
創(chuàng)建generator文件夾,并創(chuàng)建generator-config.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="Mysql" targetRuntime="MyBatis3" defaultModelType="flat"> <!-- 自動(dòng)檢查關(guān)鍵字,為關(guān)鍵字增加反引號(hào) --> <property name="autoDelimitKeywords" value="true"/> <property name="beginningDelimiter" value="`"/> <property name="endingDelimiter" value="`"/> <!--覆蓋生成 XML 文件--> <plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin" /> <!-- 生成的實(shí)體類添加 toString()方法 --> <plugin type="org.mybatis.generator.plugins.ToStringPlugin"/> <!-- 不生成注釋 --> <commentGenerator> <property name="suppressAllComments" value="true"/> </commentGenerator> <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver" connectionURL="jdbc:mysql://rm-bp1tja0cb2r7t5il5ko.mysql.rds.aliyuncs.com:3306/wiki_dev?serverTimezone=Asia/Shanghai" userId="wiki_dev" password="Wiki677877"> </jdbcConnection> <!-- domain 類的位置 --> <javaModelGenerator targetProject="src\main\java" targetPackage="cool.tsy.wiki.domain"/> <!-- mapper xml的位置 --> <sqlMapGenerator targetProject="src\main\resources" targetPackage="mapper"/> <!-- mapper類的位置 --> <javaClientGenerator targetProject="src\main\java" targetPackage="cool.tsy.wiki.mapper" type="XMLMAPPER"/> <table tableName="demo" domainObjectName="Demo"/> <table tableName="ebook"/> <table tableName="category"/> <table tableName="doc"/> <table tableName="content"/> <table tableName="user"/> <table tableName="ebook_snapshot"/> </context> </generatorConfiguration>
點(diǎn)擊edit config
選擇添加maven命令
輸入這樣一條命令
mybatis-generator:generate -e
如下圖所示,完成代碼生成
以上是“springboot如何集成mybatis官方生成器”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。