??xml version="1.0" encoding="utf-8" standalone="yes"?>精品视频一二三,久久国产精品99精品国产 ,国产在线黄色http://www.aygfsteel.com/ctguzhupan/archive/2006/10/08/73886.html温柔一刀温柔一刀Sun, 08 Oct 2006 10:12:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/08/73886.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/73886.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/08/73886.html#Feedback2http://www.aygfsteel.com/ctguzhupan/comments/commentRss/73886.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/73886.html阅读全文

温柔一刀 2006-10-08 18:12 发表评论
]]>
spring 生成Excel和PDF文ghttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/04/73371.html温柔一刀温柔一刀Wed, 04 Oct 2006 04:11:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/04/73371.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/73371.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/04/73371.html#Feedback2http://www.aygfsteel.com/ctguzhupan/comments/commentRss/73371.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/73371.html阅读全文

温柔一刀 2006-10-04 12:11 发表评论
]]>
关于Acegi安全框架登陆后{向的疑问http://www.aygfsteel.com/ctguzhupan/archive/2006/10/03/73258.html温柔一刀温柔一刀Tue, 03 Oct 2006 03:09:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/03/73258.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/73258.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/10/03/73258.html#Feedback2http://www.aygfsteel.com/ctguzhupan/comments/commentRss/73258.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/73258.html阅读全文

温柔一刀 2006-10-03 11:09 发表评论
]]>
使用Acegi 1.0获取用户信息http://www.aygfsteel.com/ctguzhupan/archive/2006/09/29/72830.html温柔一刀温柔一刀Fri, 29 Sep 2006 07:17:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/09/29/72830.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/72830.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/09/29/72830.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/72830.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/72830.html阅读全文

温柔一刀 2006-09-29 15:17 发表评论
]]>
Spring+Hibernate中OpenSessionInView模式q用http://www.aygfsteel.com/ctguzhupan/archive/2006/09/20/70805.html温柔一刀温柔一刀Wed, 20 Sep 2006 06:54:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/09/20/70805.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/70805.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/09/20/70805.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/70805.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/70805.html阅读全文

温柔一刀 2006-09-20 14:54 发表评论
]]>
spring、ibatis控制oracle分页的问?http://www.aygfsteel.com/ctguzhupan/archive/2006/08/30/66580.html温柔一刀温柔一刀Wed, 30 Aug 2006 02:06:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/30/66580.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/66580.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/30/66580.html#Feedback18http://www.aygfsteel.com/ctguzhupan/comments/commentRss/66580.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/66580.html阅读全文

温柔一刀 2006-08-30 10:06 发表评论
]]>
ibatis 自带分页Ҏhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/28/66254.html温柔一刀温柔一刀Mon, 28 Aug 2006 11:45:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/28/66254.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/66254.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/28/66254.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/66254.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/66254.html 
PaginatedList paginatedList=sqlMap.queryForPaginatedList(statementName, parameterObject, pageSize);

ZSpring框架来实现的分页       
          
public   List   getAllList(String   flag)   
          
{   
                  PaginatedList   paginatedList   
=   this.getSqlMapClientTemplate().queryForPaginatedList("getAllList",null,5);  
    
                  
if   ("privious".equals(flag))   
                  
{   
                          paginatedList.previousPage();   
                  }
   
                  
else   if   ("next".equals(flag))   
                  
{   
                          paginatedList.nextPage();   
                  }
   
    
                  
return   paginatedList;   
          }
   
    
  在JSP中,如下调用Q  ?br />
<button   onclick="location.href  =  'test.shtml?flag=privious'">上一?/span></button>   
<button   onclick="location.href  =  'test.shtml?flag=next'">下一?/span></button>   

PSQ此Ҏ只可以用于小数量的数据查询,大数量此法不可行Q速度慢的无法忍受?br />                                 

温柔一刀 2006-08-28 19:45 发表评论
]]>
Spring-Validator 说明文档 http://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/65009.html温柔一刀温柔一刀Tue, 22 Aug 2006 02:57:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/65009.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/65009.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/65009.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/65009.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/65009.html阅读全文

温柔一刀 2006-08-22 10:57 发表评论
]]>
spring对commons_fileupload和cos_fileuplaod的封?/title><link>http://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/64953.html</link><dc:creator>温柔一刀</dc:creator><author>温柔一刀</author><pubDate>Tue, 22 Aug 2006 01:21:00 GMT</pubDate><guid>http://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/64953.html</guid><wfw:comment>http://www.aygfsteel.com/ctguzhupan/comments/64953.html</wfw:comment><comments>http://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/64953.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/ctguzhupan/comments/commentRss/64953.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/ctguzhupan/services/trackbacks/64953.html</trackback:ping><description><![CDATA[     摘要: spring对commons_fileupload和cos_fileuplaod的封?nbsp; <a href='http://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/64953.html'>阅读全文</a><img src ="http://www.aygfsteel.com/ctguzhupan/aggbug/64953.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/ctguzhupan/" target="_blank">温柔一刀</a> 2006-08-22 09:21 <a href="http://www.aygfsteel.com/ctguzhupan/archive/2006/08/22/64953.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Spring中实现文件上?/title><link>http://www.aygfsteel.com/ctguzhupan/archive/2006/08/17/64061.html</link><dc:creator>温柔一刀</dc:creator><author>温柔一刀</author><pubDate>Thu, 17 Aug 2006 02:28:00 GMT</pubDate><guid>http://www.aygfsteel.com/ctguzhupan/archive/2006/08/17/64061.html</guid><wfw:comment>http://www.aygfsteel.com/ctguzhupan/comments/64061.html</wfw:comment><comments>http://www.aygfsteel.com/ctguzhupan/archive/2006/08/17/64061.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/ctguzhupan/comments/commentRss/64061.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/ctguzhupan/services/trackbacks/64061.html</trackback:ping><description><![CDATA[     摘要: Spring中实现文件上?nbsp; <a href='http://www.aygfsteel.com/ctguzhupan/archive/2006/08/17/64061.html'>阅读全文</a><img src ="http://www.aygfsteel.com/ctguzhupan/aggbug/64061.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/ctguzhupan/" target="_blank">温柔一刀</a> 2006-08-17 10:28 <a href="http://www.aygfsteel.com/ctguzhupan/archive/2006/08/17/64061.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>最单的iBatis入门例子http://www.aygfsteel.com/ctguzhupan/archive/2006/08/11/62990.html温柔一刀温柔一刀Fri, 11 Aug 2006 06:05:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/11/62990.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/62990.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/11/62990.html#Feedback10http://www.aygfsteel.com/ctguzhupan/comments/commentRss/62990.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/62990.html阅读全文

温柔一刀 2006-08-11 14:05 发表评论
]]>
iBatis使用ȝhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/10/62807.html温柔一刀温柔一刀Thu, 10 Aug 2006 07:50:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/10/62807.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/62807.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/08/10/62807.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/62807.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/62807.html阅读全文

温柔一刀 2006-08-10 15:50 发表评论
]]>
Spring AOP中文教程http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63164.html温柔一刀温柔一刀Thu, 13 Jul 2006 15:01:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63164.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/63164.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63164.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/63164.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/63164.html阅读全文

温柔一刀 2006-07-13 23:01 发表评论
]]>
Spring 框架?/title><link>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63191.html</link><dc:creator>温柔一刀</dc:creator><author>温柔一刀</author><pubDate>Thu, 13 Jul 2006 14:55:00 GMT</pubDate><guid>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63191.html</guid><wfw:comment>http://www.aygfsteel.com/ctguzhupan/comments/63191.html</wfw:comment><comments>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63191.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/ctguzhupan/comments/commentRss/63191.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/ctguzhupan/services/trackbacks/63191.html</trackback:ping><description><![CDATA[     摘要: Spring 框架?nbsp; <a href='http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63191.html'>阅读全文</a><img src ="http://www.aygfsteel.com/ctguzhupan/aggbug/63191.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/ctguzhupan/" target="_blank">温柔一刀</a> 2006-07-13 22:55 <a href="http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63191.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>~程l典技术:Spring的y妙之?/title><link>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63192.html</link><dc:creator>温柔一刀</dc:creator><author>温柔一刀</author><pubDate>Thu, 13 Jul 2006 14:51:00 GMT</pubDate><guid>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63192.html</guid><wfw:comment>http://www.aygfsteel.com/ctguzhupan/comments/63192.html</wfw:comment><comments>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63192.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/ctguzhupan/comments/commentRss/63192.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/ctguzhupan/services/trackbacks/63192.html</trackback:ping><description><![CDATA[     摘要: ~程l典技术:Spring的y妙之?nbsp; <a href='http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63192.html'>阅读全文</a><img src ="http://www.aygfsteel.com/ctguzhupan/aggbug/63192.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/ctguzhupan/" target="_blank">温柔一刀</a> 2006-07-13 22:51 <a href="http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63192.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[导入]从零开始创建基于struts1.2 + Hibernate3.0 Web工程(W二部分)http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63168.html温柔一刀温柔一刀Thu, 13 Jul 2006 14:42:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63168.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/63168.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63168.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/63168.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/63168.html
文章来源:http://blog.csdn.net/ctguzhupan/archive/2006/07/13/914422.aspx

温柔一刀 2006-07-13 22:42 发表评论
]]>
[导入]从零开始创建基于struts1.2 + Hibernate3.0 Web工程(W一部分)http://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63169.html温柔一刀温柔一刀Thu, 13 Jul 2006 14:41:00 GMThttp://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63169.htmlhttp://www.aygfsteel.com/ctguzhupan/comments/63169.htmlhttp://www.aygfsteel.com/ctguzhupan/archive/2006/07/13/63169.html#Feedback0http://www.aygfsteel.com/ctguzhupan/comments/commentRss/63169.htmlhttp://www.aygfsteel.com/ctguzhupan/services/trackbacks/63169.html
文章来源:http://blog.csdn.net/ctguzhupan/archive/2006/07/13/914416.aspx

温柔一刀 2006-07-13 22:41 发表评论
]]>
strutsq接池配|?/title><link>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/09/63175.html</link><dc:creator>温柔一刀</dc:creator><author>温柔一刀</author><pubDate>Sat, 08 Jul 2006 20:24:00 GMT</pubDate><guid>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/09/63175.html</guid><wfw:comment>http://www.aygfsteel.com/ctguzhupan/comments/63175.html</wfw:comment><comments>http://www.aygfsteel.com/ctguzhupan/archive/2006/07/09/63175.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/ctguzhupan/comments/commentRss/63175.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/ctguzhupan/services/trackbacks/63175.html</trackback:ping><description><![CDATA[strutsq接池配|,只写了两个例子,实际开发中最好不用struts带的q接池,不利于系l程序换ULQ?img height="1" src="http://blog.csdn.net/ctguzhupan/aggbug/894051.aspx" width="1" /><br /><br /><p>SQLServer2000数据库连接池配置如下Q?/p><div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">data-sources</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">data-source </span><span style="COLOR: #ff0000">key</span><span style="COLOR: #0000ff">="org.apache.struts.action.DATA_SOURCE"</span><span style="COLOR: #ff0000"> type</span><span style="COLOR: #0000ff">="org.apache.commons.dbcp.BasicDataSource"</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="driverClassName"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="com.microsoft.jdbc.sqlserver.SQLServerDriver"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="url"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=jdsdb"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="username"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="sa"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="password"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">=""</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="maxActive"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="200"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="maxIdel"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="30"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="maxWait"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="10000"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="autoReconnect"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="true"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="max-connections"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="10"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="min-connections"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="2"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="inactivity-timeout"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="30"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="wait-timeout"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="30"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="eroDateTimeBehavior"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="convertToNull"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span><span style="COLOR: #0000ff"></</span><span style="COLOR: #800000">data-source</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span><span style="COLOR: #0000ff"></</span><span style="COLOR: #800000">data-sources</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span></div><p></p><p>MySQL数据库连接池配置如下Q?/p><div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">data-sources</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">data-source </span><span style="COLOR: #ff0000">key</span><span style="COLOR: #0000ff">="org.apache.struts.action.DATA_SOURCE"</span><span style="COLOR: #ff0000"> type</span><span style="COLOR: #0000ff">="org.apache.commons.dbcp.BasicDataSource"</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="driverClassName"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="com.mysql.jdbc.Driver"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="url"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="jdbc:mysql://127.0.0.1:3306/JDSDB?useUnicode=true&amp;characterEncoding=gb2312"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="username"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="root"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="password"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">=""</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="maxActive"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="200"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="maxIdel"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="30"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="maxWait"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="10000"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="autoReconnect"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="true"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="max-connections"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="10"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="min-connections"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="2"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="inactivity-timeout"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="30"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="wait-timeout"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="30"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span><span style="COLOR: #0000ff"><</span><span style="COLOR: #800000">set-property </span><span style="COLOR: #ff0000">property</span><span style="COLOR: #0000ff">="eroDateTimeBehavior"</span><span style="COLOR: #ff0000"> value</span><span style="COLOR: #0000ff">="convertToNull"</span><span style="COLOR: #ff0000"> </span><span style="COLOR: #0000ff">/></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span><span style="COLOR: #0000ff"></</span><span style="COLOR: #800000">data-source</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span><span style="COLOR: #0000ff"></</span><span style="COLOR: #800000">data-sources</span><span style="COLOR: #0000ff">></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span></div><p></p><p> </p><br /><img src ="http://www.aygfsteel.com/ctguzhupan/aggbug/63175.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/ctguzhupan/" target="_blank">温柔一刀</a> 2006-07-09 04:24 <a href="http://www.aygfsteel.com/ctguzhupan/archive/2006/07/09/63175.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> վ֩ģ壺 <a href="http://" target="_blank">ͬ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">¡</a>| <a href="http://" target="_blank">³</a>| <a href="http://" target="_blank">ɯ</a>| <a href="http://" target="_blank">ͨ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">˿</a>| <a href="http://" target="_blank">ƽ˳</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ϫ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ɽ</a>| <a href="http://" target="_blank">ó</a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank">²</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ĺ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ֶ</a>| <a href="http://" target="_blank">Ӣ</a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank">˴</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ͼ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">᯹</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank">կ</a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank">̨</a>| <a href="http://" target="_blank">ԭ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>