`

TOMCAT数据库连接池的配置方法总结

    博客分类:
  • jsp
 
阅读更多

 

 

MySQL+TOMCAT 为例
1.
DataSource 设置到我们的WEB 项目中,下面详细的介绍下:
第一步:在我们的WEB 项目中的META-INF 文件夹下建立一个context.xml

Xml 代码 复制代码

 

<?xml version='1.0' encoding='utf-8'?>

 

<Context>

 

    <Resource name="jdbc/mysql"  

       auth="Container"  

       type="javax.sql.DataSource"  

       driverClassName="com.mysql.jdbc.Driver"  

       url="jdbc:mysql://localhost/bbs"  

       username="root"  

       password="root"  

       maxActive="50"  

       maxIdle="20"  

       maxWait="10000" />  

 

</Context>


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

Xml 代码 复制代码

<resource-ref>  
     <description>DB Connection</description>  
     <res-ref-name>jdbc/mysql</res-ref-name>  
      <res-type>javax.sql.DataSource</res-type>  
     <res-auth>Container</res-auth>  
   </resource-ref>  
 

  <resource-ref>

      <description>DB Connection</description>

      <res-ref-name>jdbc/mysql</res-ref-name>

      <res-type>javax.sql.DataSource</res-type>

      <res-auth>Container</res-auth>

  </resource-ref>


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

 

<%@page contentType="text/html;charset=utf-8" %>

<%@ page import ="java.sql.*"%>

<%@ page import = "javax.sql.*"%>

<%@ page import ="javax.naming.*"%>

 

<html>

<head>

<title></title>

</head>

<body>

<%

    DataSource ds = null;

    Context env = null;

    Connection conn = null;

    Statement stmt=null;

    ResultSet rs=null;

    String sql="select * from person";

    try

    {

        System.out.println (System.getProperty("java.naming.factory.initial"));

        env = (Context) new InitialContext().lookup("java:comp/env"); 

        ds = (DataSource) env.lookup("jdbc/mysql");

        conn = ds.getConnection();

        stmt=conn.createStatement();

        rs=stmt.executeQuery(sql);

        while(rs.next())

        {

        System.out.println("ID>>"+rs.getInt("id")+"  name>>"+rs.getString("name")+"  password>>"+rs.getString("password"));

        }

    }

    catch (Exception e)

    {

        e.printStackTrace();

    }

%>

 

 

</body>
 

 

 

 

package xushun.util;

 

import java.sql.*;

import javax.sql.*;

import javax.naming.*;

 

public class DBHelper {

   

    public static Connection getConnection() throws SQLException,NamingException

    {

        // 初始化查找命名空间

        Context initContext = new InitialContext();

        Context envContext = (Context)initContext.lookup("java:/comp/env");

        // 找到DataSource

        DataSource ds = (DataSource)envContext.lookup("jdbc/mysql");

        return ds.getConnection();

    }

}


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

Xml 代码 复制代码

 <GlobalNamingResources>  
  <!-- Editable user database that can also be used by   
       UserDatabaseRealm to authenticate users   
   -->  
   <Resource name="UserDatabase" auth="Container"  
             type="org.apache.catalina.UserDatabase"  
             description="User database that can be updated and saved"  
            factory="org.apache.catalina.users.MemoryUserDatabaseFactory"  
            pathname="conf/tomcat-users.xml" />  
 </GlobalNamingResources>  
 

  <GlobalNamingResources>

    <!-- Editable user database that can also be used by

         UserDatabaseRealm to authenticate users

    -->

    <Resource name="UserDatabase" auth="Container"

              type="org.apache.catalina.UserDatabase"

              description="User database that can be updated and saved"

              factory="org.apache.catalina.users.MemoryUserDatabaseFactory"

              pathname="conf/tomcat-users.xml" />

  </GlobalNamingResources>

修改为

Xml 代码 复制代码

  1. <GlobalNamingResources>   
  2.   <!-- Editable user database that can also be used by   
  3.        UserDatabaseRealm to authenticate users   
  4.   -->   
  5.   <Resource  name ="UserDatabase"  auth ="Container"   
  6.             type ="org.apache.catalina.UserDatabase"   
  7.             description ="User database that can be updated and saved"   
  8.             factory ="org.apache.catalina.users.MemoryUserDatabaseFactory"   
  9.             pathname ="conf/tomcat-users.xml"  />   
  10.   <Resource  name ="jdbc/bbs"         
  11.          auth ="Container"  type ="javax.sql.DataSource"   
  12.          driverClassName ="com.mysql.jdbc.Driver"   
  13.          maxIdle ="20"   
  14.          maxWait ="5000"   
  15.          username ="root"   
  16.          password ="admin"   
  17.          url ="jdbc:mysql://localhost:3306/bbs"         
  18.          maxActive ="100"     
  19.          removeAbandoned ="true"   
  20.          removeAbandonedTimeout ="60"   
  21.          logAbandoned ="true" />   
  22. </GlobalNamingResources>   

  <GlobalNamingResources>

    <!-- Editable user database that can also be used by

         UserDatabaseRealm to authenticate users

    -->

    <Resource name="UserDatabase" auth="Container"

              type="org.apache.catalina.UserDatabase"

              description="User database that can be updated and saved"

              factory="org.apache.catalina.users.MemoryUserDatabaseFactory"

              pathname="conf/tomcat-users.xml" />

    <Resource name="jdbc/bbs"    

            auth="Container" type="javax.sql.DataSource"

            driverClassName="com.mysql.jdbc.Driver"

            maxIdle="20"

            maxWait="5000"

            username="root"

            password="admin"

            url="jdbc:mysql://localhost:3306/bbs"    

            maxActive="100"

            removeAbandoned="true"

            removeAbandonedTimeout="60"

            logAbandoned="true"/>

  </GlobalNamingResources>


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

Xml 代码 复制代码

  1. <ResourceLink  name ="jdbc/bbs"  global ="jdbc/bbs"  type ="javax.sql.DataSource" />   

<ResourceLink name="jdbc/bbs" global="jdbc/bbs" type="javax.sql.DataSource"/>


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

Xml 代码 复制代码

  1. <resource-ref>   
  2.     <description> DB Connection</description>   
  3.     <res-ref-name> jdbc/mysql</res-ref-name>   
  4.     <res-type> javax.sql.DataSource</res-type>   
  5.     <res-auth> Container</res-auth>   
  6. </resource-ref>   

  <resource-ref>

      <description>DB Connection</description>

      <res-ref-name>jdbc/mysql</res-ref-name>

      <res-type>javax.sql.DataSource</res-type>

      <res-auth>Container</res-auth>

  </resource-ref>


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

Xml 代码 复制代码

  1. <Resource  name ="jdbc/bbs"         
  2.               auth ="Container"  type ="javax.sql.DataSource"   
  3.               driverClassName ="com.mysql.jdbc.Driver"   
  4.               maxIdle ="20"   
  5.               maxWait ="5000"   
  6.               username ="root"   
  7.               password ="admin"   
  8.               url ="jdbc:mysql://localhost:3306/bbs"         
  9.               maxActive ="100"     
  10.               removeAbandoned ="true"   
  11.               removeAbandonedTimeout ="60"   
  12.               logAbandoned ="true" />   

<Resource name="jdbc/bbs"    

            auth="Container" type="javax.sql.DataSource"

            driverClassName="com.mysql.jdbc.Driver"

            maxIdle="20"

            maxWait="5000"

            username="root"

            password="admin"

            url="jdbc:mysql://localhost:3306/bbs"    

            maxActive="100"

            removeAbandoned="true"

            removeAbandonedTimeout="60"

            logAbandoned="true"/>

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

Xml 代码 复制代码

  1. <resource-ref>   
  2.     <description> DB Connection</description>   
  3.     <res-ref-name> jdbc/mysql</res-ref-name>   
  4.     <res-type> javax.sql.DataSource</res-type>   
  5.     <res-auth> Container</res-auth>   
  6. </resource-ref>   

  <resource-ref>

      <description>DB Connection</description>

      <res-ref-name>jdbc/mysql</res-ref-name>

      <res-type>javax.sql.DataSource</res-type>

      <res-auth>Container</res-auth>

  </resource-ref>


就是这些了,如果有什么不太清楚的就留言,一起研究下。

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics