想检查如何使用Presto JDBC连接池。我们有一个Spring Boot应用程序,在该应用程序中,我们必须经常使用JDBC调用通过presto查询数据库,并且我们不想为每个请求创建新的连接。相反,我们要维护一个连接池。
是否可以选择维护连接池?
我当前执行连接的代码:
try {
// Register JDBC driver
Class.forName("com.facebook.presto.jdbc.PrestoDriver");
// Open a connection
conn = (PrestoConnection) DriverManager.getConnection(dbUrl, dbUser, dbPassword);
conn.setTimeZoneId("UTC");
} catch (ClassNotFoundException | SQLException e) {
throw new RuntimeException("Couldn't make a connection to Presto DB. error: " + e.getStackTrace());
}