<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
<!-- Always ensure to use the correct XML header as above!
总是确保使用正确的XML头上面!
-->
<sqlMapConfig>
<!-- The properties (name=value) in the file specified here can be used placeholders in this config file (e.g. “${driver}”. The file is relative to the classpath and is completely optional.
文件中的属性(name=value)可以使用占位符在这里指定的配置文件(例如“$ {driver} "。文件是相对于classpath和是完全可选的。
-->
<properties resource="examples/sqlmap/maps/SqlMapConfigExample.properties " />
<!-- These settings control SqlMapClient configuration details, primarily to do with transaction management. They are all optional (more detail later in this document).
这些设置控制SqlMapClient配置细节,主要与事务管理。他们都是可选的
-->
<settings
cacheModelsEnabled="true" enhancementEnabled="true" lazyLoadingEnabled="true" maxRequests="32" maxSessions="10" maxTransactions="5" useStatementNamespaces="false"
/>
<!-- Type aliases allow you to use a shorter name for long fully qualified class names. -->
<typeAlias alias="order" type="testdomain.Order"/>
<!-- Configure a datasource to use with this SQL Map using SimpleDataSource. Notice the use of the properties from the above resource
配置一个数据源使用这个SQL使用SimpleDataSource。注意从上面的资源属性的使用
-->
<transactionManager type="JDBC" >
<dataSource type="SIMPLE">
<property name="JDBC.Driver" value="${driver}"/>
<property name="JDBC.ConnectionURL" value="${url}"/>
<property name="JDBC.Username" value="${username}"/>
<property name="JDBC.Password" value="${password}"/>
<property name="JDBC.DefaultAutoCommit" value="true" />
<property name="Pool.MaximumActiveConnections" value="10"/>
<property name="Pool.MaximumIdleConnections" value="5"/>
<property name="Pool.MaximumCheckoutTime" value="120000"/>
<property name="Pool.TimeToWait" value="500"/>
<property name="Pool.PingQuery" value="select 1 from ACCOUNT"/>
<property name="Pool.PingEnabled" value="false"/>
<property name="Pool.PingConnectionsOlderThan" value="1"/>
<property name="Pool.PingConnectionsNotUsedFor" value="1"/>
</dataSource>
</transactionManager>
<!-- Identify all SQL Map XML files to be loaded by this SQL map. Notice the paths are relative to the classpath. For now, we only have one…
-->
<sqlMap resource="examples/sqlmap/maps/Person.xml" />
</sqlMapConfig>
ibatis 配置文件说明
原创mb64390262217c2 博主文章分类:ibatis ©著作权
文章标签 sql SQL XML 文章分类 JavaScript 前端开发
-
ibatis配置文件的namespace
ibatis的配置文件中有一个命名空间的属性,如<sql
iBATIS SQL XML sql xml -
从IBatis2.X 移植到IBatis3.0 sqlMapConfig and sqlMap XML 配置文件升级说明
ibatis3.0初学配置文件
ibatis 配置文件 初学 3.0 -
flink配置文件说明
代码】flink配置文件说明。
flink java hadoop zookeeper hdfs -
mysql中的isexist
目录一、索引相关二、EXPLIAN中有用的信息三、字段类型和编码四、SQL语句总结五、踩坑六、千万大表在线修改七、慢查询日志八、查看sql进程和杀死进程九、一些数据库性能的思考本文主要是总结了工作中一些常用的操作,以及不合理的操作,在对慢查询进行优化时收集的一些有用的资料和信息,本文适合有mysql基础的开发人员。一、索引相关1、索引基数:基数是数据列所包含的不同值的数量。例如,某个数据列包含值1
mysql中的isexist mysql isnull用法 mysql 列合并 mysql 合并列 mysql 大小写敏感配置