JAVA—咖啡馆

——欢迎访问rogerfan的博客,常来《JAVA——咖啡馆》坐坐,喝杯浓香的咖啡,彼此探讨一下JAVA技术,交流工作经验,分享JAVA带来的快乐!本网站部分转载文章,如果有版权问题请与我联系。

BlogJava 首页 新随笔 联系 聚合 管理
  447 Posts :: 145 Stories :: 368 Comments :: 0 Trackbacks

 

 1<settings
 2    cacheModelsEnabled="true"
 3    lazyLoadingEnabled="false"
 4    enhancementEnabled="true"
 5    maxSessions="64"
 6    maxTransactions="8"
 7    maxRequests="128"
 8    useStatementNamespaces="false"
 9    classInfoCacheEnabled="true"
10    errorTracingEnabled="true"
11    defaultStatementTimeout=""
12    statementCachingEnabled="true"
13/>


<!--
 
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(禁用)

来源:(http://blog.sina.com.cn/s/blog_44167fca0100eiqx.html) - SqlMapConfig.xml中的setting属性设置_leozwf_新浪博客

 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.
 例如: statementCachingEnabled=“true”
 缺省值: true (启用)
-->

来源:(http://blog.sina.com.cn/s/blog_44167fca0100eiqx.html) - SqlMapConfig.xml中的setting属性设置_leozwf_新浪博客
posted on 2010-07-01 11:21 rogerfan 阅读(2057) 评论(0)  编辑  收藏 所属分类: 【开源技术】

只有注册用户登录后才能发表评论。


网站导航: