数据库连接池配置方法

几天在弄个小东西,要用到数据库,以前就听说过数据库连接池这个概念,所以就打算在这个小东西中加入数据库连接池。呵呵。从网上搜了一些资料。今天就整理一下。我搜到的设置基本上主要有两种方法我们以MySQL+TOMCAT为例 
1.DataSource设置到我们的WEB项目中,下面详细的介绍下: 
第一步:在我们的WEB项目中的META-INF文件夹下建立一个context.xml 

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><?xml version='1.0' encoding='utf-8'?>  

<!--[if !supportLists]-->2.  <!--[endif]-->  

<!--[if !supportLists]-->3.  <!--[endif]--><Context>  

<!--[if !supportLists]-->4.  <!--[endif]-->  

<!--[if !supportLists]-->5.  <!--[endif]-->    <Resource name="jdbc/mysql"     

<!--[if !supportLists]-->6.  <!--[endif]-->       auth="Container"     

<!--[if !supportLists]-->7.  <!--[endif]-->       type="javax.sql.DataSource"     

<!--[if !supportLists]-->8.  <!--[endif]-->       driverClassName="com.mysql.jdbc.Driver"     

<!--[if !supportLists]-->9.  <!--[endif]-->       url="jdbc:mysql://localhost/bbs"     

<!--[if !supportLists]-->10. <!--[endif]-->       username="root"     

<!--[if !supportLists]-->11. <!--[endif]-->       password="root"     

<!--[if !supportLists]-->12. <!--[endif]-->       maxActive="50"     

<!--[if !supportLists]-->13. <!--[endif]-->       maxIdle="20"     

<!--[if !supportLists]-->14. <!--[endif]-->       maxWait="10000" />     

<!--[if !supportLists]-->15. <!--[endif]-->  

<!--[if !supportLists]-->16. <!--[endif]--></Context>  


第二步:在我们的WEB项目下的WEB-INF文件夹下建立一个web.xml(如果存在了就不用了,直接修改就行了) 
(这几天测试了一下,不做这步也可以,O(_)O哈哈~省事了) 

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><resource-ref>  

<!--[if !supportLists]-->2.  <!--[endif]-->    <description>DB Connection</description>  

<!--[if !supportLists]-->3.  <!--[endif]-->    <res-ref-name>jdbc/mysql</res-ref-name>  

<!--[if !supportLists]-->4.  <!--[endif]-->    <res-type>javax.sql.DataSource</res-type>  

<!--[if !supportLists]-->5.  <!--[endif]-->    <res-auth>Container</res-auth>  

<!--[if !supportLists]-->6.  <!--[endif]--></resource-ref>  


第三步:我们就可以用代码来获取Connection对象了 

Java代码 

<!--[if !supportLists]-->1.  <!--[endif]-->package xushun.util;  

<!--[if !supportLists]-->2.  <!--[endif]-->  

<!--[if !supportLists]-->3.  <!--[endif]-->import java.sql.*;  

<!--[if !supportLists]-->4.  <!--[endif]-->import javax.sql.*;  

<!--[if !supportLists]-->5.  <!--[endif]-->import javax.naming.*;  

<!--[if !supportLists]-->6.  <!--[endif]-->  

<!--[if !supportLists]-->7.  <!--[endif]-->public class DBHelper {  

<!--[if !supportLists]-->8.  <!--[endif]-->      

<!--[if !supportLists]-->9.  <!--[endif]-->    public static Connection getConnection() throws SQLException,NamingException  

<!--[if !supportLists]-->10. <!--[endif]-->    {  

<!--[if !supportLists]-->11. <!--[endif]-->        // 初始化查找命名空间  

<!--[if !supportLists]-->12. <!--[endif]-->        Context initContext = new InitialContext();  

<!--[if !supportLists]-->13. <!--[endif]-->        Context envContext = (Context)initContext.lookup("java:/comp/env");  

<!--[if !supportLists]-->14. <!--[endif]-->        // 找到DataSource  

<!--[if !supportLists]-->15. <!--[endif]-->        DataSource ds = (DataSource)envContext.lookup("jdbc/mysql");  

<!--[if !supportLists]-->16. <!--[endif]-->        return ds.getConnection();  

<!--[if !supportLists]-->17. <!--[endif]-->    }  

<!--[if !supportLists]-->18. <!--[endif]-->}  


2.DataSource设置到我们的Tomcat中,下面详细的介绍下(测试用的JAVA代码和上面的一样就不帖出了): 
这里我查到的设置方法就有了一点区别了。有的人把DataSource设置在Tomcatserver.xml文件的GlobalNamingResources下面,然后在context.xml中去映射。有的直接就写在context.xml中了 
先说下在server.xml添加DataSource 
第一步:在Tomcatconf中的server.xml文件中找到

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><GlobalNamingResources>  

<!--[if !supportLists]-->2.  <!--[endif]-->  <!-- Editable user database that can also be used by  

<!--[if !supportLists]-->3.  <!--[endif]-->       UserDatabaseRealm to authenticate users  

<!--[if !supportLists]-->4.  <!--[endif]-->  -->  

<!--[if !supportLists]-->5.  <!--[endif]-->  <Resource name="UserDatabase" auth="Container"  

<!--[if !supportLists]-->6.  <!--[endif]-->            type="org.apache.catalina.UserDatabase"  

<!--[if !supportLists]-->7.  <!--[endif]-->            description="User database that can be updated and saved"  

<!--[if !supportLists]-->8.  <!--[endif]-->            factory="org.apache.catalina.users.MemoryUserDatabaseFactory"  

<!--[if !supportLists]-->9.  <!--[endif]-->            pathname="conf/tomcat-users.xml" />  

<!--[if !supportLists]-->10. <!--[endif]--></GlobalNamingResources>  

修改为

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><GlobalNamingResources>  

<!--[if !supportLists]-->2.  <!--[endif]-->  <!-- Editable user database that can also be used by  

<!--[if !supportLists]-->3.  <!--[endif]-->       UserDatabaseRealm to authenticate users  

<!--[if !supportLists]-->4.  <!--[endif]-->  -->  

<!--[if !supportLists]-->5.  <!--[endif]-->  <Resource name="UserDatabase" auth="Container"  

<!--[if !supportLists]-->6.  <!--[endif]-->            type="org.apache.catalina.UserDatabase"  

<!--[if !supportLists]-->7.  <!--[endif]-->            description="User database that can be updated and saved"  

<!--[if !supportLists]-->8.  <!--[endif]-->            factory="org.apache.catalina.users.MemoryUserDatabaseFactory"  

<!--[if !supportLists]-->9.  <!--[endif]-->            pathname="conf/tomcat-users.xml" />  

<!--[if !supportLists]-->10. <!--[endif]-->  <Resource name="jdbc/bbs"       

<!--[if !supportLists]-->11. <!--[endif]-->         auth="Container" type="javax.sql.DataSource"  

<!--[if !supportLists]-->12. <!--[endif]-->         driverClassName="com.mysql.jdbc.Driver"  

<!--[if !supportLists]-->13. <!--[endif]-->         maxIdle="20"  

<!--[if !supportLists]-->14. <!--[endif]-->         maxWait="5000"  

<!--[if !supportLists]-->15. <!--[endif]-->         username="root"  

<!--[if !supportLists]-->16. <!--[endif]-->         password="admin"  

<!--[if !supportLists]-->17. <!--[endif]-->         url="jdbc:mysql://localhost:3306/bbs"       

<!--[if !supportLists]-->18. <!--[endif]-->         maxActive="100"   

<!--[if !supportLists]-->19. <!--[endif]-->         removeAbandoned="true"  

<!--[if !supportLists]-->20. <!--[endif]-->         removeAbandonedTimeout="60"  

<!--[if !supportLists]-->21. <!--[endif]-->         logAbandoned="true"/>  

<!--[if !supportLists]-->22. <!--[endif]--></GlobalNamingResources>  


第二步:在Tomcatconf文件夹下的context.xml中加入 

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><ResourceLink name="jdbc/bbs" global="jdbc/bbs" type="javax.sql.DataSource"/>  


第三步:就是在WEB项目的WEB-INF中的web.xml添加

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><resource-ref>  

<!--[if !supportLists]-->2.  <!--[endif]-->    <description>DB Connection</description>  

<!--[if !supportLists]-->3.  <!--[endif]-->    <res-ref-name>jdbc/mysql</res-ref-name>  

<!--[if !supportLists]-->4.  <!--[endif]-->    <res-type>javax.sql.DataSource</res-type>  

<!--[if !supportLists]-->5.  <!--[endif]-->    <res-auth>Container</res-auth>  

<!--[if !supportLists]-->6.  <!--[endif]--></resource-ref>  


还有就是在Tomcat文档中提到的方法,直接修改context.xml文件了 
Tomcatconf文件夹下的context.xml中加入

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><Resource name="jdbc/bbs"       

<!--[if !supportLists]-->2.  <!--[endif]-->              auth="Container" type="javax.sql.DataSource"  

<!--[if !supportLists]-->3.  <!--[endif]-->              driverClassName="com.mysql.jdbc.Driver"  

<!--[if !supportLists]-->4.  <!--[endif]-->              maxIdle="20"  

<!--[if !supportLists]-->5.  <!--[endif]-->              maxWait="5000"  

<!--[if !supportLists]-->6.  <!--[endif]-->              username="root"  

<!--[if !supportLists]-->7.  <!--[endif]-->              password="admin"  

<!--[if !supportLists]-->8.  <!--[endif]-->              url="jdbc:mysql://localhost:3306/bbs"       

<!--[if !supportLists]-->9.  <!--[endif]-->              maxActive="100"   

<!--[if !supportLists]-->10. <!--[endif]-->              removeAbandoned="true"  

<!--[if !supportLists]-->11. <!--[endif]-->              removeAbandonedTimeout="60"  

<!--[if !supportLists]-->12. <!--[endif]-->              logAbandoned="true"/>  

然后就是在WEB项目的WEB-INF中的web.xml添加

Xml代码 

<!--[if !supportLists]-->1.  <!--[endif]--><resource-ref>  

<!--[if !supportLists]-->2.  <!--[endif]-->    <description>DB Connection</description>  

<!--[if !supportLists]-->3.  <!--[endif]-->    <res-ref-name>jdbc/mysql</res-ref-name>  

<!--[if !supportLists]-->4.  <!--[endif]-->    <res-type>javax.sql.DataSource</res-type>  

<!--[if !supportLists]-->5.  <!--[endif]-->    <res-auth>Container</res-auth>  

<!--[if !supportLists]-->6.  <!--[endif]--></resource-ref>  


就是这些了,如果有什么不太清楚的就留言,一起研究下。等以后我在搜集下资料整理出上面用到的XML文件中各个标签的属性及其代表的意思。有兴趣的也可以自己先查下。:-) 

<td>JNDI 查找名称</td>       <td>关联的引用</td> 

<td>java:comp/env</td>      <td>应用程序环境条目</td> 

<td>java:comp/env/jdbc</td> <td>JDBC 数据源资源管理器连接工厂</td> 

<td>java:comp/env/ejb</td>  <td>EJB 引用</td> 

<td>java:comp/UserTransaction</td><td>UserTransaction 引用</td> 

<td>java:comp/env/mail</td> <td>JavaMail

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值