gpt4 book ai didi

java - HikariCP 与 PostgreSQL : setQueryTimeout(int) is not yet implemented

转载 作者:行者123 更新时间:2023-11-29 13:02:08 29 4
gpt4 key购买 nike

我尝试将 HikariCP 与 PostgreSQL 一起使用,但它不起作用。它抛出异常:

WARN  [2014-10-24 14:38:54,195] com.zaxxer.hikari.pool.HikariPool: Exception during keep alive check, that means the connection must be dead.
! org.postgresql.util.PSQLException: Method org.postgresql.jdbc4.Jdbc4Statement.setQueryTimeout(int) is not yet implemented.
! at org.postgresql.Driver.notImplemented(Driver.java:753) ~[postgresql-9.0-801.jdbc4.jar:na]
! at org.postgresql.jdbc2.AbstractJdbc2Statement.setQueryTimeout(AbstractJdbc2Statement.java:656) ~[postgresql-9.0-801.jdbc4.jar:na]
! at com.zaxxer.hikari.pool.HikariPool.isConnectionAlive(HikariPool.java:473) [HikariCP-java6-2.1.0.jar:na]
! at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:178) [HikariCP-java6-2.1.0.jar:na]
! at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:94) [HikariCP-java6-2.1.0.jar:na]

我尝试了所有可能的驱动程序版本(包括 org.postgresql:postgresql:9.3-1102-jdbc41)——没有任何帮助。有人在 PostgreSQL 上使用过它吗?

这是我的配置文件:

<bean id="hikariConfig" class="com.zaxxer.hikari.HikariConfig">
<property name="connectionTestQuery" value="SELECT 1" />
<property name="dataSourceClassName" value="org.postgresql.ds.PGSimpleDataSource" />
<property name="maximumPoolSize" value="${jdbc.maximumPoolSize:20}" />
<property name="idleTimeout" value="${jdbc.idleTimeout:600000}" />

<property name="dataSourceProperties">
<props>
<prop key="databaseName">vidsearch_test</prop>
<prop key="user">${hibernate.connection.username}</prop>
<prop key="password">${hibernate.connection.password}</prop>
</props>
</property>
</bean>

<bean id="dataSource" class="com.zaxxer.hikari.HikariDataSource" destroy-method="close">
<constructor-arg ref="hikariConfig"/>
</bean>

最佳答案

不要使用 connectionTestQuery。允许 HikariCP 遵循其使用 Connection.isValid() 方法的默认行为。这需要 JDBC4 驱动程序。

关于java - HikariCP 与 PostgreSQL : setQueryTimeout(int) is not yet implemented,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26550316/

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