溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SSM框架——使用MyBatis Generator自動創(chuàng)建代碼

發(fā)布時(shí)間:2020-07-20 15:53:09 來源:網(wǎng)絡(luò) 閱讀:714 作者:dreamer192 欄目:開發(fā)技術(shù)



下載附件中的工具,解壓開如下:

src中有我已經(jīng)生產(chǎn)的代碼,把文件夾下所有文件刪除即可

SSM框架——使用MyBatis Generator自動創(chuàng)建代碼


generatorConfig.xml是需要我們來配置的文件,配置如下,根據(jù)自己的需要修改


<?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>    

<!-- 數(shù)據(jù)庫驅(qū)動-->    

    <classPathEntry  location="mysql-connector-java-5.1.25-bin.jar"/>    

    <context id="DB2Tables"  targetRuntime="MyBatis3">    

        <commentGenerator>    

            <property name="suppressDate" value="true"/>    

            <!-- 是否去除自動生成的注釋 true:是 : false:否 -->    

            <property name="suppressAllComments" value="true"/>    

        </commentGenerator>    

        <!--數(shù)據(jù)庫鏈接URL,用戶名、密碼 -->    

        <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://125.221.1.1/db_124" userId="dem" password="dem">    

        </jdbcConnection>    

        <javaTypeResolver>    

            <property name="forceBigDecimals" value="false"/>    

        </javaTypeResolver>    

        <!-- 生成模型的包名和位置-->    

        <javaModelGenerator targetPackage="test.domain" targetProject="src">    

            <property name="enableSubPackages" value="true"/>    

            <property name="trimStrings" value="true"/>    

        </javaModelGenerator>    

        <!-- 生成映射文件的包名和位置-->    

        <sqlMapGenerator targetPackage="test.mapping" targetProject="src">    

            <property name="enableSubPackages" value="true"/>    

        </sqlMapGenerator>    

        <!-- 生成DAO的包名和位置-->    

        <javaClientGenerator type="XMLMAPPER" targetPackage="test.IDao" targetProject="src">    

            <property name="enableSubPackages" value="true"/>    

        </javaClientGenerator>    

        <!-- 要生成的表 tableName是數(shù)據(jù)庫中的表名或視圖名 domainObjectName是實(shí)體類名-->    

        <table tableName="user_info_t" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  

    </context>    

</generatorConfiguration>    



 當(dāng)以上這些完成之后,只需要打開控制臺,進(jìn)入lib目錄下,執(zhí)行腳本:

Java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite

       即可。


附件:http://down.51cto.com/data/2368514
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI