這篇文章帶給大家的內容是關於mybatis反向工程的介紹(程式碼範例),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
先建立一個test類別:
在main方法裡寫上如下程式碼:
List <String> warnings = new ArrayList <String>(); boolean overwrite = true; File configFile = new File("generator.xml"); ConfigurationParser cp = new ConfigurationParser(warnings); Configuration config = cp.parseConfiguration(configFile); DefaultShellCallback callback = new DefaultShellCallback(overwrite); MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config,callback,warnings); myBatisGenerator.generate(null);
在工程目錄下新建一個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> <context id="DB2Tables" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressAllComments" value="true"></property> </commentGenerator> <!-- 设定数据库连接 --> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/mybatis" userId="root" password="123"> </jdbcConnection> <javaTypeResolver > <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!-- 生成 bean 存放的位置 --> <javaModelGenerator targetPackage="com.ujiuye.bean" targetProject=".\src"> <property name="enableSubPackages" value="true" /> <property name="trimStrings" value="true" /> </javaModelGenerator> <!-- 生成的mapper文件的位置 --> <sqlMapGenerator targetPackage="com.ujiuye.mapper" targetProject=".\src"> <property name="enableSubPackages" value="true" /> </sqlMapGenerator> <!-- 生成的mapper.xml 对应的那个mapper接口的存放位置 --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.ujiuye.mapper" targetProject=".\src"> <property name="enableSubPackages" value="true" /> </javaClientGenerator> <!-- 设定反向生成的表 --> <table tableName="Person"></table> <table tableName="car"></table> <table tableName="card"></table> </context> </generatorConfiguration>
最後的table標籤是自己資料庫中表格的名字;資料庫的連接資訊需要自己修改
執行test類別就會自動產生自己以上設定table標籤中數據中表的對應的實體類,dao層介面以及對應的mapper映射
此外需要的jar包請自行下載:https:// github.com/Pei-Qi/mybatis_jar
#以上是mybatis反向工程的介紹(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!