小编典典

如何在Tomcat 6和MySQL中使用连接池?

jsp

我正在构建一个Web应用程序,并且由于其附带的优点,我想使用“连接池”。我读了一些教程,但是我真的不明白我需要做什么。

如果有人能给我一个北方,我会感激的。

我正在使用JSP / Servlet,MySQL,Tomcat 6和Netbeans 6.9.1。

最好的问候,Valter Henrique。


阅读 291

收藏
2020-06-10

共1个答案

小编典典

您是否阅读过http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-
howto.html#MySQL_DBCP_Example?它显示了从Web应用程序访问数据库的所有步骤。

如果您需要使用Java代码来访问数据库(比通过JSP更好),则代码应如下所示:

InitialContext initCtx = new InitialContext();
// getting the datasource declared in web.xml
DataSource dataSource = (DataSource) initCtx.lookup("java:comp/env/jdbc/TestDB");

// getting a connection from the dataSOurce/connection pool
Connection c = null;
try {
    c = dataSource.getConnection();
    // use c to get some data
}
finally {
    // always close the connection in a finally block in order to give it back to the pool
    if (c != null) {
        try {
            c.close();
        }
        catch (SQLException e) {
            // not much to do except perhaps log the exception
        }
    }
}

另外,请注意,您还应该关闭try块内使用的结果集和语句。有关更完整的示例,请参见http://tomcat.apache.org/tomcat-6.0-doc/jndi-
datasource-examples-
howto.html#Random_Connection_Closed_Exceptions。

2020-06-10