您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關基于mybatis逆向工程的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
使用mybatis生成逆向工程的詳細步驟,我個人感覺這個是最簡單的一個了,雖然網上有很多種的方法來生成逆向工程,可是這個方法最簡單。在這里我是使用maven搭建的環境,但是在正常的環境下也是一樣的。
步驟:
1、創建一個genreatorConfig.xml文件,這個文件的名字可以任意。我創建的時候是將它放在了src/main/resources下,這個文件的內容并不需要去記,只需要去網上找就可以了。我們要做的只是對配置文件當中的一些部分做修改,修改成自己的數據就可以了。
<?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> <!--數據庫驅動,最好不要有中文字符,不然會找不到--> <classPathEntry location="D:\MysqlJdbcconnector/mysql-connector-java-5.1.41-bin.jar" /> <context id="DB2Tables" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressDate" value="true"/> <property name="suppressAllComments" value="true"/> </commentGenerator> <!--數據庫鏈接地址賬號密碼--> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost/pet_hospital" userId="root" password="112233"> </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!--生成Model類存放位置--> <javaModelGenerator targetPackage="com.qianfeng.bean" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <!--生成映射文件存放位置--> <sqlMapGenerator targetPackage="com.qianfeng.bean" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <!--生成DaoMapper類存放位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="com.qiafeng.dao" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> </javaClientGenerator> <!--生成對應表及類名,需要記住的一點是逆向工程無法生成關聯關系,只能生成單表操作--> <table tableName="owners" domainObjectName="Owners" ></table> <table tableName="pets" domainObjectName="Pets" ></table> <table tableName="types" domainObjectName="Types" ></table> <table tableName="employee" domainObjectName="Employee" ></table> <table tableName="specialties" domainObjectName="Specialties" ></table> <table tableName="vets" domainObjectName="Vets" ></table> <table tableName="visits" domainObjectName="Visits" ></table> <table tableName="vet_specialties" domainObjectName="VetSpecialties" ></table> </context> </generatorConfiguration>
2、導入相應的jar包,mybatis-generator-core這個包和mysql-connector-java這個包
3、創建一個測試類,然后運行下面代碼就可以了。
public static void generator() throws Exception{ List<String> warnings = new ArrayList<String>(); boolean overwrite = true; //項目根路徑不要有中文,我的有中文,所以使用絕對路徑 File configFile = new File("src/main/resources/genreatorConfig.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); } public static void main(String[] args) { try { generator(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } }
感謝各位的閱讀!關于“基于mybatis逆向工程的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。