您的位置:首页 > 数据库

ibatis中sql-map-config.xml的settings配置

2016-08-11 10:02 288 查看
ibatis中sql-map-config.xml的settings配置

<settings

cacheModelsEnabled="true"

lazyLoadingEnabled="false"

enhancementEnabled="true"

maxSessions="64"

maxTransactions="8"

maxRequests="128"

useStatementNamespaces="false"

classInfoCacheEnabled="true"

errorTracingEnabled="true"

defaultStatementTimeout=""

statementCachingEnabled="true"

/>

<!--

maxRequests

同时执行 SQL 语句的最大线程数。大于这个值的线程将阻塞直到另一个线程执行完成。不同的 DBMS有不同的限制值,但任何数据库都有这些限制。通常这个值应该至少是maxTransactions(参见以下)的 10 倍,并且总是大于 maxSessions 和maxTranactions。减小这个参数值通常能提高性能。

例如:maxRequests=“256”

缺省值:512

maxSessions

同一时间内活动的最大 session 数。一个 session 可以maxSessions是代码请求的显式 session,也可以是当线程使用SqlMapClient 实例(即执行一条语句)自动获得的session。它应该总是大于或等于 maxTransactions 并小于 maxRequests。减小这个参数值通常能减少内存使用。

例如:maxSessions=“64”

缺省值:128

maxTransactions

同时进入 SqlMapClient.startTransaction()的最大线程maxTransactions 数。大于这个值的线程将阻塞直到另一个线程退出。不同的 DBMS 有不同的限制值,但任何数据库都有这些限制。这个参数值应该总是小于或等于maxSessions 并总是远远小于 maxRequests。减小这个参数值通常能提高性能。

例如:maxTransactions=“16”

缺省值:32

cacheModelsEnabled

全局性地启用或禁用 SqlMapClient 的所有缓存cacheModelsEnabled model。调试程序时使用。

例如:cacheModelsEnabled=“true”

缺省值:true(启用)

lazyLoadingEnabled

全局性地启用或禁用SqlMapClient的所有延迟加载。lazyLoadingEnabled 调试程序时使用。

例子:lazyLoadingEnabled=“true”

缺省值:true(启用)

enhancementEnabled

全局性地启用或禁用运行时字节码增强,以优化访enhancementEnabled

问Java Bean属性的性能,同时优化延迟加载的性能。

例子:enhancementEnabled=“true”

缺省值:false(禁用)

useStatementNamespaces

如果启用本属性,必须使用全限定名来引用 mapped useStatementNamespaces

statement。Mapped statement 的全限定名由 sql-map 的名称和 mapped-statement 的名称合成。例如: queryForObject("sqlMapName.statementName");

例如:useStatementNamespaces=“false”

缺省值:false(禁用)

注意:如果useStatementNamespaces的配置,需要映射配置文件sql-map-config.xml和映射文件统一起来

例:使用useStatementNamespaces=“true”的情况

sql-map-config.xml

<sqlMapConfig>

<settings  useStatementNamespaces="true" />
<sqlMap resource="file.xml"/>

</sqlMapConfig>

file.xml:

<sqlMap namespace="com.entity">
<select id="selectfile" resultClass="com.entity.File">
select * from file
</select>

</sqlMap>

dao

sqlMapClient.queryForList("com.entity.selectfile")

使用useStatementNamespaces=“false”的情况

<sqlMap>
<select id="com.entity.selectfile" resultClass="com.entity.File">
select * from file
</select>

</sqlMap>

不统一,可能报以下错误:

There is no statement named com.entity.selectfile in this SqlMap

defaultStatementTimeout

此设置值必须为一个整数,作为JDBC连接超时的时间,这个值可以被任意一个映射文件的statement属性来重新设置,

如果没有指明,查询将无超时时间限制除非在映射文件中设置statement属性值。被设置的值以秒为单位等待连接失效

classInfoCacheEnabled 

With this setting enabled, iBATIS will maintain a cache of introspected

classes. This will lead to a significant reduction in startup time if many

classes are reused.

例如: classInfoCacheEnabled=“true”

缺省值: true (启用)

statementCachingEnabled (iBATIS 2.3.0以后版本中有)

With this setting enabled, iBATIS will maintain a local cache of

prepared statements. This can lead to significant performance

improvements.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ibatis sql-map-confi