0

我在 contex.xml 中写:

<Resource name="1_db" auth="Container" type="javax.sql.DataSource" maxActive="50" maxIdle="30" maxWait="10000" username="root" password="tunespray2008" driverClassName="com.mysql.jdbc.Driver"  url="jdbc:mysql://localhost:3306/1_db">
<Resource name="2_db" auth="Container" type="javax.sql.DataSource" maxActive="50" maxIdle="30" maxWait="10000" username="root" password="tunespray2008" driverClassName="com.mysql.jdbc.Driver"  url="jdbc:mysql://localhost:3306/2_db">
<Resource name="3_db" auth="Container" type="javax.sql.DataSource" maxActive="50" maxIdle="30" maxWait="10000" username="root" password="tunespray2008" driverClassName="com.mysql.jdbc.Driver"  url="jdbc:mysql://localhost:3306/3_db">
<Resource name="common" auth="Container" type="javax.sql.DataSource" maxActive="50" maxIdle="30" maxWait="10000" username="root" password="tunespray2008" driverClassName="com.mysql.jdbc.Driver"  url="jdbc:mysql://localhost:3306/common">

Java代码:

public static Connection getDBConnection(String url) 
{
Connection con = null;
    try 
    {
    Context ctx = new InitialContext();
    BasicDataSource ds = (BasicDataSource)tx.lookup("java:comp/env/"+url);
    con = ds.getConnection();
    }catch(Exception e) {}
    return con;
}

之后我打电话:

String url ="common";
LoginDAO ldcom = DAOFactory.getLoginDAO(url);
url ="1_db";
LoginDAO ldcom = DAOFactory.getLoginDAO(url);
StatusDAO ldcom = DAOFactory.getStatusDAO(url);

之后,当我们查看JProfiler它时,它会显示很多打开的连接,尽管我们调用con.close(),rs.close()st.close().

请提及我们如何Datasource以正确的方式使用 a ?

4

1 回答 1

2

有2个要点:

1)始终在 finally 块中关闭连接(和其他数据库资源)。在您的情况下,它可能是:

Connection conn = null;
try {
    conn = getDBConnection(xxx);
    // do stuff with the connection
}
// optionally catch any errors that you can handle
finally {
    // close other DB resources that depend on conn, e.g. Statements, ResultSets
    if( conn != null ) try { conn.close(); }
    catch(Exception ignore) {}
}

2)您看到的打开连接可能是连接池。创建数据库连接DriverManager.getConnection()是一个昂贵(耗时)的过程。在有许多并发请求的应用程序服务器环境中,为每个请求创建一个新连接将成为性能杀手。javax.sql.Datasource包装由应用程序服务器管理的连接池。当您close()从该池(Datasource)中获取连接时,它不会被破坏,而是返回到池中以供将来使用。

于 2013-09-18T09:39:30.067 回答