tomcat的Context配置

this_heart_add_add發表於2014-05-07

這幾天在弄個小東西,要用到資料庫,以前就聽說過資料庫連線池這個概念,所以就打算在這個小東西中加入資料庫連線池。呵呵。從網上搜了一些資料。今天就整理一下。我搜到的設定基本上主要有兩種方法我們以MySQL+TOMCAT為例 
1.
DataSource設定到我們的WEB專案中,下面詳細的介紹下:
 
第一步:在我們的WEB專案中的META-INF資料夾下建立一個context.xml

Xml程式碼

  1. <?xml version='1.0' encoding='utf-8'?>  
  2.   
  3. <Context>  
  4.   
  5.     <Resource name="jdbc/mysql"      
  6.        auth="Container"      
  7.        type="javax.sql.DataSource"      
  8.        driverClassName="com.mysql.jdbc.Driver"      
  9.        url="jdbc:mysql://localhost/bbs"      
  10.        username="root"      
  11.        password="root"      
  12.        maxActive="50"      
  13.        maxIdle="20"      
  14.        maxWait="10000" />      
  15.   
  16. </Context>  


第二步:在我們的WEB專案下的WEB-INF資料夾下建立一個web.xml(如果存在了就不用了,直接修改就行了)
(
這幾天測試了一下,不做這步也可以,O(∩_∩)O哈哈~省事了)

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>  


第三步:我們就可以用程式碼來獲取Connection物件了

Java程式碼

  1. package xushun.util;   
  2.   
  3. import java.sql.*;   
  4. import javax.sql.*;   
  5. import javax.naming.*;   
  6.   
  7. public class DBHelper {   
  8.        
  9.     public static Connection getConnection() throws SQLException,NamingException   
  10.     {   
  11.         // 初始化查詢名稱空間   
  12.         Context initContext = new InitialContext();   
  13.         Context envContext = (Context)initContext.lookup("java:/comp/env");   
  14.         // 找到DataSource   
  15.         DataSource ds = (DataSource)envContext.lookup("jdbc/mysql");   
  16.         return ds.getConnection();   
  17.     }   
  18. }  


2.
DataSource設定到我們的Tomcat中,下面詳細的介紹下(測試用的JAVA程式碼和上面的一樣就不帖出了): 
這裡我查到的設定方法就有了一點區別了。有的人把DataSource設定在Tomcatserver.xml檔案的GlobalNamingResources下面,然後在context.xml中去對映。有的直接就寫在context.xml中了 
先說下在server.xml新增DataSource
 
第一步:在Tomcatconf中的server.xml檔案中找到

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. </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>  


第二步:在Tomcatconf資料夾下的context.xml中加入

Xml程式碼

  1. <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>  


還有就是在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"/>  

然後就是在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>  


就是這些了,如果有什麼不太清楚的就留言,一起研究下。等以後我在蒐集下資料整理出上面用到的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
 會話連線工廠
</td>

<td>java:comp/env/url</td>  <td>URL
 連線工廠
</td>

<td>java:comp/env/jms</td>  <td>JMS
 連線工廠和目標
</td>

<td>java:comp/ORB</td>      <td>
應用程式元件之間共享的 ORB 例項</td>

相關文章