首页 > 其他 > 详细

反向生成

时间:2016-12-03 12:26:43      阅读:262      评论:0      收藏:0      [点我收藏+]

 

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

<!--mybetis反向生成插件-->
<generatorConfiguration>
<!-- 数据库的驱动包路径 -->
<classPathEntry location="D:\www\driver\mysql-connector-java-5.1.7-bin.jar" />

<context id="DB2Tables" targetRuntime="MyBatis3">
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/t_crm?characterEncoding=utf-8"
userId="root"
password="root">
</jdbcConnection>

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

<javaModelGenerator targetPackage="cn.hd.sale.po" targetProject="CRMSYSTEM_SSM\src">
<property name="enableSubPackages" value="true" />
<property name="trimStrings" value="true" />
</javaModelGenerator>

<sqlMapGenerator targetPackage="cn.hd.sale.mapper" targetProject="CRMSYSTEM_SSM\src">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>

<javaClientGenerator type="XMLMAPPER" targetPackage="cn.hd.sale.mapper" targetProject="CRMSYSTEM_SSM\src">
<property name="enableSubPackages" value="true" />
</javaClientGenerator>



<table tableName="crm_saleplan" domainObjectName="Saleplanbean"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
</table>

<table tableName="crm_sales" domainObjectName="Salesbean"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
</table>

</context>
</generatorConfiguration>

反向生成

原文:http://www.cnblogs.com/joyous-day/p/6128224.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!