| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE ibatorConfiguration PUBLIC "-//Apache Software Foundation//DTD Apache iBATIS Ibator Configuration 1.0//EN" "http://ibatis.apache.org/dtd/ibator-config_1_0.dtd"><ibatorConfiguration>  <classPathEntry location="E:\dev\demo\系统设计\实体Bean\build/../../lib/postgresql-42.2.4.jar" />  <ibatorContext id="oracleTables" targetRuntime="Ibatis2Java5"> 		<!-- 消除警告 -->		<property name="suppressTypeWarnings" value="true" />		<!-- 序列化 -->		<ibatorPlugin type="org.apache.ibatis.ibator.plugins.SerializablePlugin" />		<!-- 分页 -->		<ibatorPlugin type="org.apache.ibatis.ibator.plugins.PaginationPlugin">			<property name="enablePagination" value="true" />			<!-- mysql or oracle -->			<property name="databaseType" value="oracle" />		</ibatorPlugin>				<!-- 重命名example类 -->		<ibatorPlugin			type="org.apache.ibatis.ibator.plugins.RenameExampleClassPlugin">			<property name="searchString" value="Example$" />			<property name="replaceString" value="SQLBuilder" />		</ibatorPlugin>  		<!-- 数据库连接 -->		<jdbcConnection driverClass="org.postgresql.Driver"			connectionURL="jdbc:postgresql://192.168.0.140:32002/cae_service" userId="postgres" password="postgres" >			<property name="remarksReporting" value="true"/>        	    </jdbcConnection>			<!-- 是否使用大金额类型 -->	    <javaTypeResolver >	      <property name="forceBigDecimals" value="true" />	    </javaTypeResolver>	    	    <javaModelGenerator targetPackage="com.miniframe.system.model" targetProject="E:\dev\demo\系统设计\实体Bean\build/../../../modelsrc">	      <property name="enableSubPackages" value="true" />	      <property name="trimStrings" value="true" />	      <property name="rootClass" value="com.miniframe.system.MiniserviceBaseModel" />	    </javaModelGenerator>	    	    <sqlMapGenerator targetPackage="com.miniframe.model.system.xml" targetProject="E:\dev\demo\系统设计\实体Bean\build/../../../modelsrc">	      <property name="enableSubPackages" value="true" />	    </sqlMapGenerator>		    <daoGenerator type="GENERIC-CI" targetPackage="com.miniframe.model.system.dao" targetProject="E:\dev\demo\系统设计\实体Bean\build/../../../modelsrc">	      <property name="enableSubPackages" value="true" />	      <property name="trimStrings" value="true" />	      <property name="rootInterface" value="com.miniframe.system.MiniserviceBaseDao" />	    </daoGenerator>	    <table schema="" tableName="SYS_APPCODE" domainObjectName="" cacheTime="1" cacheType="EHCACHE"/>	    <table schema="" tableName="SYS_DEPARTMENT" domainObjectName="" cacheTime="1" cacheType="EHCACHE"/>	    <table schema="" tableName="SYS_FUNCTION" domainObjectName="" cacheTime="1" cacheType="EHCACHE"/>	    <table schema="" tableName="SYS_LOGIN" domainObjectName=""  />	    <table schema="" tableName="SYS_MENU" domainObjectName="" cacheTime="1" cacheType="EHCACHE"/>	    <table schema="" tableName="SYS_ROLE" domainObjectName="" cacheTime="1" cacheType="EHCACHE"/>	    <table schema="" tableName="SYS_USER" domainObjectName=""  />	    <table schema="" tableName="SYS_FILE" domainObjectName=""  />	    <table schema="" tableName="SYS_VERSION" domainObjectName=""  />	    <table schema="" tableName="USER_LOGIN" domainObjectName=""  />	    <table schema="" tableName="PAY" domainObjectName=""  />	    <table schema="" tableName="PROJECT" domainObjectName=""  />	    <table schema="" tableName="USER_CERTIFICATION" domainObjectName=""  />	    <table schema="" tableName="POINT_CHANGE" domainObjectName=""  />	    <table schema="" tableName="INVOICE" domainObjectName=""  />	    <table schema="" tableName="ORDERS" domainObjectName=""  />	    <table schema="" tableName="PROTOCOL" domainObjectName=""  />	    <table schema="" tableName="bisiness_number" domainObjectName=""  />	    <table schema="" tableName="GOODS" domainObjectName=""  />	    <table schema="" tableName="reissue_invoice" domainObjectName=""  />	    <table schema="" tableName="resource" domainObjectName=""  />	    <table schema="" tableName="apply_resource" domainObjectName=""  />	    <table schema="" tableName="buy_resource" domainObjectName=""  />	    <table schema="" tableName="point_order" domainObjectName=""  />	    <table schema="" tableName="block_info" domainObjectName=""  />	    <table schema="" tableName="general_set" domainObjectName=""  />  </ibatorContext></ibatorConfiguration>
 |