ヘルパー クラスで Oracle DB の接続プールをセットアップしたいと考えています。
public class DbConnection {
// Data source for the pooled connection
private static OracleDataSource dataSource;
// Host
private static final String dbHost = "bla";
// Port
private static final String dbPort = "1521";
// DBname
private static final String database = "orcl";
// DBuser
private static final String dbUser = "bla";
// DBpassword
private static final String dbPassword = "bla";
static {
OracleConnectionPoolDataSource opds;
try {
opds = new OracleConnectionPoolDataSource();
opds.setURL("jdbc:oracle:thin:@" + dbHost + ":" + dbPort + ":"
+ database);
opds.setUser(dbUser);
opds.setPassword(dbPassword);
dataSource = opds;
} catch (SQLException e1) {
System.err.println("Connection failed!");
}
try {
// Load driver
Class.forName("oracle.jdbc.driver.OracleDriver");
} catch (ClassNotFoundException e) {
System.out.println("Driver not found!");
}
}
public static Connection getConnection() throws SQLException {
return dataSource.getConnection();
}
}
これは機能していますが、それほど高速ではないため、プーリングを機能させるには何かが足りないと思います。助言がありますか?
したがって、私の外部クラスは getConnection() メソッドを呼び出すだけです...
Connection conn = DbConnection.getConnection();
...
conn.close();