李敏  
日历
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567
统计
  • 随笔 - 1
  • 文章 - 40
  • 评论 - 4
  • 引用 - 0

导航

常用链接

留言簿(1)

文章分类

文章档案

相册

收藏夹

它山之石

聚贤庄

搜索

  •  

最新评论

 
首先是proxool.xml的配置文件。

<?xml version="1.0" encoding="UTF-8"?>
    
<!--
        the proxool configuration can be embedded within your own
        application's. Anything outside the "proxool" tag is ignored.
    
-->
<proxool>
    
<alias>sqlserver-test</alias>
    
<driver-class>com.microsoft.jdbc.sqlserver.SQLServerDriver
    
</driver-class>
    
<driver-url>
        jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=test
    
</driver-url>
    
<driver-properties>
        
<property name="user" value="sa" />
        
<property name="password" value="limin" />
    
</driver-properties>
    
<house-keeping-sleep-time>40000</house-keeping-sleep-time>
    
<house-keeping-test-sql>select CURRENT_DATE
    
</house-keeping-test-sql>
    
<maximum-connection-count>10</maximum-connection-count>
    
<minimum-connection-count>3</minimum-connection-count>
    
<maximum-connection-lifetime>18000000
    
</maximum-connection-lifetime> <!-- 5 hours -->
    
<simultaneous-build-throttle>5</simultaneous-build-throttle>
    
<recently-started-threshold>40000</recently-started-threshold>
    
<overload-without-refusal-lifetime>50000
    
</overload-without-refusal-lifetime>
    
<maximum-active-time>60000</maximum-active-time>
    
<verbose>true</verbose>
    
<trace>true</trace>
    
<fatal-sql-exception>ORA-1234</fatal-sql-exception>
    
<prototype-count>2</prototype-count>
</proxool>


以下是代码片段,由于测试程序使用到了DataSource作为数据库的连接,所以没有采用官方文档上使用的DriverManager.getConnection(..)来直接获得Connection

try {
            InputStreamReader in 
= new InputStreamReader(getClass()
                    .getResourceAsStream(
"/proxool.xml"));

            JAXPConfigurator.configure(in, 
false);

            DataSource pooled 
= new ProxoolDataSource("sqlserver-test");

            UserDAO userDAO 
= new UserDAO();

            userDAO.setDataSource(pooled);

            User user 
= userDAO.find(new Integer(1));

            System.out.println(user.getId() 
+ " " + user.getName() + " "
                    
+ user.getAge());

        }
 catch (Exception e) {
            
// TODO Auto-generated catch block
            e.printStackTrace();
        }


posted on 2009-02-26 20:01 李敏 阅读(367) 评论(0)  编辑  收藏 所属分类: 应用配置

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


网站导航:
 
 
Copyright © 李敏 Powered by: 博客园 模板提供:沪江博客