Mybatis 在 IDEA 中使用 generator 逆向工程生成 pojo,mapper
阿新 • • 發佈:2018-12-10
使用mybatis可以逆向生成pojo和mapper檔案有很多種方式,我以前用的是mybtais自帶的generator包來生成,連線如下:mybatis自己生成pojo
今天我用了IDEA上使用maven專案來生成pojo和mapper,具體步驟如下
1,先配置pom.xml檔案,先配置外掛plugin
配置檔案如下
<build> <plugins> <!-- mybatis逆向工程 --> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.2</version> <configuration> <!--配置檔案的位置--> <configurationFile>src/main/resources/Personal-GeneratorConfig.xml</configurationFile> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> </plugin> </plugins> </build>
2,專案中新增配置檔案,如上面所示的配置檔案目錄位置,在新增personal-generatorconfig.xml檔案,然後新增配置檔案personal-db.properties,位置結構如圖所示:
其中personal-generator.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> <properties resource="Personal-DB.properties"></properties> <classPathEntry location="${jdbc.driverLocation}" /> <!--classPathEntry location="D:\zngkpt\m2\repository\mysql\mysql-connector-java\5.1.40\mysql-connector-java-5.1.40.jar" /--> <context id="context1" targetRuntime="MyBatis3"> <commentGenerator> <!-- 去除自動生成的註釋 --> <property name="suppressAllComments" value="true" /> </commentGenerator> <!-- 資料庫連線配置 --> <jdbcConnection driverClass="${jdbc.driverClass}" connectionURL="${jdbc.connectionURL}" userId="${jdbc.userId}" password="${jdbc.password}" /> <!--jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/test" userId="root" password="mysql" /--> <!-- 非必需,型別處理器,在資料庫型別和java型別之間的轉換控制--> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!--配置生成的實體包 targetPackage:生成的實體包位置,預設存放在src目錄下 targetProject:目標工程名 --> <javaModelGenerator targetPackage="com.unisits.zngkpt.common.userprivrman.pojo" targetProject="src/main/java" /> <!-- 實體包對應對映檔案位置及名稱,預設存放在src目錄下 --> <sqlMapGenerator targetPackage="com.unisits.zngkpt.common.userprivrman.mapper" targetProject="src/main/java" /> <!-- 配置表 schema:不用填寫 tableName: 表名 enableCountByExample、enableSelectByExample、enableDeleteByExample、enableUpdateByExample、selectByExampleQueryId: 去除自動生成的例子 --> <table schema="" tableName="sys_role" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> <table schema="" tableName="sys_permission" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> <table schema="" tableName="sys_role_permission" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> <table schema="" tableName="sys_user" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> <table schema="" tableName="sys_user_role" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> <table schema="" tableName="unit_info" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> <table schema="" tableName="unit_type" enableCountByExample="false" enableSelectByExample="false" enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" > </table> </context> </generatorConfiguration>
personal-db.properties的程式碼如下
jdbc.driverLocation=D:\\zngkpt\\m2\\repository\\com\\microsoft\\sqlserver\\sqljdbc4\\4.0\\sqljdbc4-4.0.jar jdbc.driverClass=com.microsoft.sqlserver.jdbc.SQLServerDriver jdbc.connectionURL=jdbc:sqlserver://127.0.0.1:1434;DatabaseName=db_zngkpt jdbc.userId=sa jdbc.password=123456
3,到現在為止,所有的mybatis配置工作已經結束了,開始配置idea來執行生成pojo吧
點選選單Run->Edit Configuration,然後在彈出窗體的左上角,點選+->maven,會出現下面窗體
然後點選apply,確定,然後run剛才新建的那個maven即可,最後生成的結構如下
指令為:
mybatis-generator:generate -e
轉自: https://www.cnblogs.com/ningheshutong/p/6376970.html
另:maven 執行命令:mvn mybatis-generator:generate