第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

mybatis自動生成代碼

標(biāo)簽:
JavaScript

第一步:先下载jar包,mybatis-generator-core-1.3.2.jar, mysql-connector-java-5.1.13.jar;
第二步:编写需要生成代码的xml(根据实际的DB, 路径编写)
<?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="F:/mybatis/mysql-connector-java-5.1.13.jar"/><context id="my" targetRuntime="MyBatis3">    <commentGenerator>        <property name="suppressDate" value="false"/>        <property name="suppressAllComments" value="true"/>    </commentGenerator>    <jdbcConnection driverClass="com.mysql.jdbc.Driver"                    connectionURL="jdbc:mysql://182.254.128.241:4780/product_wms_test" userId="cdb_outerroot"                    password="zaq1CDE#"/>    <javaModelGenerator targetPackage="cn.eeka.productwms.entity.biz"                        targetProject="F:/mybatis/wms/entity">        <property name="enableSubPackages" value="true"/>        <property name="trimStrings" value="true"/>    </javaModelGenerator>    <sqlMapGenerator targetPackage="mappers"                     targetProject="F:/mybatis/wms/mapper">        <property name="enableSubPackages" value="true"/>    </sqlMapGenerator>    <javaClientGenerator targetPackage="cn.eeka.productwms.dao.biz"                         targetProject="F:/mybatis/wms/dao" type="XMLMAPPER">        <property name="enableSubPackages" value="true"/>    </javaClientGenerator>    <table tableName="PM_ProductInBound" domainObjectName="ProductInBound"           enableCountByExample="false" enableUpdateByExample="false"           enableDeleteByExample="false" enableSelectByExample="false"           selectByExampleQueryId="false">    </table>    <table tableName="PM_ProductInBoundDetail" domainObjectName="ProductInBoundDetail"           enableCountByExample="false" enableUpdateByExample="false"           enableDeleteByExample="false" enableSelectByExample="false"           selectByExampleQueryId="false">    </table></context>

</generatorConfiguration>

第三步: 执行命令
打开命令窗口,切换到mybatis所在包的路径下面,输入命令: java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite

或者 直接双击".bat"文件

注意: xml里面涉及到的一些路径配置,需要根据自己的实际情况填写正确,
如果执行后出现报错,一般有两种原因:
a.把xml中的中文注释都去掉;
b.把xml的编码格式转换成UTF-8 无BOM格式的;

點(diǎn)擊查看更多內(nèi)容
1人點(diǎn)贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
數(shù)據(jù)庫工程師
手記
粉絲
52
獲贊與收藏
361

關(guān)注作者,訂閱最新文章

閱讀免費(fèi)教程

感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報(bào)

0/150
提交
取消