tomcat+mysql資料庫的串連池配置

來源:互聯網
上載者:User
mysql|資料|資料庫
1)下載mm.mysql-2.0.14-bin.jar包,放在tomcat目錄下的common/lib檔案夾中

2)在tomcat目錄下的conf/server.xml中的</Host>前加入(注意:全部大寫的地方要替換成你自己的東西)

<!--for mysql database connection pool--><Context path="/APPLICATION_NAME" docBase="APPLICATIOIN_NAME" debug="5" reloadable="true" crossContext="true">  <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_DBTest_log." suffix=".txt" timestamp="true"/>          <Resource name="jdbc/DATABASE_NAME" auth="Container" type="javax.sql.DataSource"/>           <ResourceParams name="jdbc/DATABASE_NAME">                      <parameter>                               <name>factory</name>                                  <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>                      </parameter>                                   <!-- Class name for mm.mysql JDBC driver -->                     <parameter>                                    <name>driverClassName</name>                                      <value>org.gjt.mm.mysql.Driver</value>                      </parameter>                                 <!-- The JDBC connection url for connecting to your MySQL dB.                                            The autoReconnect=true argument to the url makes sure that the                                          mm.mysql JDBC Driver will automatically reconnect if mysqld closed                                      the connection.  mysqld by default closes idle connections after 8 hours.-->                     <parameter>                                  <name>url</name>                                <value>jdbc:mysql://localhost:3306/DATABASE_NAME?autoReconnect=true</value>                   </parameter>                                 <!-- MySQL dB username and password for dB connections  -->                     <parameter>                                  <name>username</name>                                   <value>DB_USERNAME</value>                      </parameter>                      <parameter>                                   <name>password</name>                                 <value>DB_PASSWORD</value>                      </parameter>                                 <!-- Maximum number of dB connections in pool. Make sure you                                       configure your mysqld max_connections large enough to handle                                            all of your db connections. Set to 0 for no limit.-->                   <parameter>                                    <name>maxActive</name>                                   <value>100</value>                      </parameter>                                   <!-- Maximum number of idle dB connections to retain in pool.                                       Set to 0 for no limit. -->                     <parameter>                                  <name>maxIdle</name>                                <value>30</value>                   </parameter>                                <!-- Maximum time to wait for a dB connection to become available in ms,                                     in this example 10 seconds. An Exception is thrown if this timeout                                     is exceeded.  Set to -1 to wait indefinitely.-->                      <parameter>                            <name>maxWait</name>                       <value>10000</value>                     </parameter>           </ResourceParams></Context>這樣就算串連完了

3)測試:

DATABASE_NAME:testdb

APPLICATION_NAME:mysqlTest

在testdb資料庫裡建立表userinfo

id   |   username1        aaa2        bbb

4)web.xml

<web-app><resource-ref>  <description>MySQL  Datasource  example</description>  <res-ref-name>jdbc/testdb</res-ref-name>  <res-type>javax.sql.DataSource</res-type>  <res-auth>Container</res-auth> </resource-ref></web-app>

5)index.jsp

<%@ page contentType="text/html;charset=gb2312" language="java" import="java.sql.*,javax.naming.*"%>

<% Context initCtx = new InitialContext();  Context ctx = (Context) initCtx.lookup("java:comp/env");  Object obj = (Object) ctx.lookup("jdbc/testdb");      javax.sql.DataSource ds = (javax.sql.DataSource)obj;  Connection conn = ds.getConnection();  Statement stmt = conn.createStatement();  String strSql = "select * from userinfo";  ResultSet rs = stmt.executeQuery(strSql);%>

<body> <%while(rs.next()){%> <p> <%=rs.getString("username")%> </p> <%}%><body>

可以看到輸出結果為:

aaabbb


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.