九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
tomcat6.0配置mysql數據庫連接池
userphoto

2013.07.07

關注

tomcat6.0配置mysql數據庫連接池

下載Tomcat最新版本
下載地址:http://tomcat.apache.org/
下載mysql最新版本以及最近版本的驅動程序
下載地址:http://dev.mysql.com/downloads
http://dev.mysql.com/downloads/connector
并將下載的mysql-connector-java-5.1.0-bin.jar a連接文件放到$CATALINA_HOME/lib/下。
安裝mysql數據庫
修改$CATALINA_HOME/conf/ context.xml<Context></Context>之間加入如下內容

    <!-- maxActive: 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.
         -->
    <!-- maxIdle: Maximum number of idle dB connections to retain in pool.
         Set to -1 for no limit.  See also the DBCP documentation on this
         and the minEvictableIdleTimeMillis configuration parameter.
         -->
    <!-- maxWait: 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.
         -->
    <!-- username and password: MySQL dB username and password for dB connections  -->
    <!-- driverClassName: Class name for the old mm.mysql JDBC driver is
         org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
         Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
         -->
       <!-- url: 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.
         -->
  

         <Resource name="jdbc/mldn"

                                                  auth="Container"

                                                  type="javax.sql.DataSource"

                                                  maxActive="100"

                                                  maxIdle="30"

                                                  maxWait="10000"

                                                  username="root"

                                                  password="admin"

                                                  driverClassName="com.mysql.jdbc.Driver"

                                                  url="jdbc:mysql://localhost:3306/mldn?autoReconnect=true"/>

此時要注意修改自己的數據庫的用戶名和密碼
我建立的
數據庫:mldn
用戶名:
root
密碼:
admin
修改工程目錄下的web.xml文件添加如下

<description>MySQL Test App</description>
  <resource-ref>
      <description>DB Connection</description>
      <res-ref-name>jdbc/mldn</res-ref-name>
      <res-type>javax.sql.DataSource</res-type>
      <res-auth>Container</res-auth>
  </resource-ref>
創(chuàng)建一個java
package com.test;

package com.test;

 

import javax.naming.*;

import javax.sql.*;

import java.sql.*;

 

public class DBTest {

    String foo = "Not Connected";

    int bar = -1;

    String name=null;

    String password=null;

    public void init() {

        try {

            Context ctx = new InitialContext();

            if (ctx == null)

                throw new Exception("Boom - No Context");

            DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/mldn");

            if (ds != null) {

                Connection conn = ds.getConnection();

                if (conn != null) {

                    foo = "Got Connection " + conn.toString();

                    Statement stmt = conn.createStatement();

                    ResultSet rst = stmt.executeQuery(" select * from admin ");

                    if (rst.next()) {

                        foo = rst.getString(1);

                        bar = 208;

                        name=rst.getString(2);

                        password=rst.getString(3);

                    }

                    conn.close();

                }

            }

        } catch (Exception e) {

            e.printStackTrace();

        }

    }

 

    public String getFoo() {

        return foo;

    }

 

    public int getBar() {

        return bar;

    }

    public String getName() {

        return name;

    }

 

    public String getPassword() {

        return password;

    }

}


編輯index.jsp

<%@ page language="java" pageEncoding="GB2312"%>

<%@ page import="com.test.*"%>

<html>

    <head>

       <title>DB Test</title>

    </head>

    <body>

       <%

                   DBTest tst = new DBTest();

                   tst.init();

       %>

       <h2>

           Results

       </h2>

       Foo

       <%=tst.getFoo()%><br>

       Bar

       <%=tst.getBar()%>

       <br>

       姓名:<%=tst.getName() %>

       <br>

       密碼:<%=tst.getPassword() %>

    </body>

</html>

 

 部署測試

 

本站僅提供存儲服務,所有內容均由用戶發(fā)布,如發(fā)現有害或侵權內容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Tomcat中數據連接池的配置和相應的javabean
MyEclipse DB Browser 連接 MySQL 配置 mysql select
DBUtil的創(chuàng)建
如何在Java程序中訪問mysql數據庫中的數據并進行簡單的操作
JDBC分頁管理(MySQL)
取得剛剛插入行的自增ID,即使已經有其他用戶插入了新的行 - MySQL語法 - PHP信...
更多類似文章 >>
生活服務
熱點新聞
分享 收藏 導長圖 關注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服