码迷,mamicode.com
首页 > 其他好文 > 详细

反向生成

时间:2016-12-03 12:27:46      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:mybatis3   rac   路径   jar   enable   value   delete   context   crm   

 

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

反向生成

标签:mybatis3   rac   路径   jar   enable   value   delete   context   crm   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!