要設(shè)置PostgreSQL JDBC連接池,您可以使用以下步驟:
Maven:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>版本號</version>
</dependency>
Gradle:
implementation 'org.postgresql:postgresql:版本號'
HikariConfig config = new HikariConfig();
config.setJdbcUrl("jdbc:postgresql://localhost:5432/database_name");
config.setUsername("username");
config.setPassword("password");
config.addDataSourceProperty("cachePrepStmts", "true");
config.addDataSourceProperty("prepStmtCacheSize", "250");
config.addDataSourceProperty("prepStmtCacheSqlLimit", "2048");
HikariDataSource dataSource = new HikariDataSource(config);
Connection connection = dataSource.getConnection();
// 使用連接執(zhí)行數(shù)據(jù)庫操作
connection.close(); // 返回連接到連接池
dataSource.close();
通過以上步驟,您可以設(shè)置并使用PostgreSQL JDBC連接池來提高應用程序的性能和可靠性。