gpt4 book ai didi

java - 在哪里初始化连接池,java tomcat

转载 作者:行者123 更新时间:2023-11-28 22:38:15 24 4
gpt4 key购买 nike

我已阅读此页面:http://www.javaranch.com/journal/200601/JDBCConnectionPooling.html

方法范围连接的方法对我来说似乎相当不错。但我有一个问题,我什么时候初始化 JDBCServlet 类?每次我想要连接?因为我认为每次我想要一个连接时,我只需调用 getConnection()...

public class JDBCServlet extends HttpServlet {

private DataSource datasource;

public void init(ServletConfig config) throws ServletException {
try {
// Look up the JNDI data source only once at init time
Context envCtx = (Context) new InitialContext().lookup("java:comp/env");
datasource = (DataSource) envCtx.lookup("jdbc/MyDataSource");
}
catch (NamingException e) {
e.printStackTrace();
}
}

private Connection getConnection() throws SQLException {
return datasource.getConnection();
}

public void doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException {
Connection connection=null;
try {
connection = getConnection();
..<do JDBC work>..
}
catch (SQLException sqlException) {
sqlException.printStackTrace();
}
finally {
if (connection != null)
try {connection.close();} catch (SQLException e) {}
}
}
}
}

最佳答案

当您导航到 servlet 映射到的链接时,将调用 JDBCServlet servlet。

因此,除了在 web.xml 中完成的从 URL 到 servlet 的映射之外,您无需执行任何操作。

Web 容器然后使用 init 方法创建 servlet 的实例,然后调用 doGet。

这是 tomcat servlet 教程的 PDF,但基础是相同的。

http://www.tutorialspoint.com/servlets/servlets_tutorial.pdf

看servlet部署部分

对于 DBUtil 类,这是一个很好的例子。

public class DBUtil {

private static DataSource dataSource;

static {
try {
dataSource = new InitialContext().lookup("jdbc/MyDataSource");
} catch (NamingException e) {
throw new ExceptionInInitializerError("'jdbc/MyDataSource' not found in JNDI", e);
}
}

public static Connection getConnection() {
return dataSource.getConnection();
}

这为您的 Web 应用程序中的所有 servlet 提供了可以使用的类。

您将通过以下方式调用 DBUtil 类

try {
connection = DBUtil.getConnection();
statement = connection.prepareStatement("SELECT id, foo, bar FROM table");
resultSet = statement.executeQuery();

//Do what you need to do.

} finally {
if (resultSet != null) try { resultSet.close(); } catch (SQLException ignore) {}
if (statement != null) try { statement.close(); } catch (SQLException ignore) {}
if (connection != null) try { connection.close(); } catch (SQLException ignore) {}
}

关于java - 在哪里初始化连接池,java tomcat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12768113/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com