获取方法org.postgresql.jdbc4.Jdbc4Connection.isValid(int)尚未实现

时间:2016-05-31 20:32:29

标签: postgresql playframework sbt playframework-2.5

我创建了一个新的Play 2.5.3项目,我收到了这个错误。

我在另一个答案中读到驱动程序已经过时,所以我添加了我认为最新的驱动程序:

我添加了这样的postgress驱动依赖:

libraryDependencies ++= Seq(
  javaJdbc,
  cache,
  javaWs,
  "postgresql" % "postgresql" % "9.1-901-1.jdbc4"
)

但仍然得到错误。知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

似乎这个功能在驱动程序版本9.1-901中实际上没有实现 看一个源代码: http://grepcode.com/file/repo1.maven.org/maven2/postgresql/postgresql/9.1-901.jdbc4/org/postgresql/jdbc4/AbstractJdbc4Connection.java#AbstractJdbc4Connection.isValid%28int%29

117    public boolean isValid(int timeout) throws SQLException
118    {
119        checkClosed();
120        throw org.postgresql.Driver.notImplemented(this.getClass(), "isValid(int)");
121    }

您可以使用较新版本的驱动程序,目前最新的驱动程序是:版本9.4-1208,请参阅此链接:https://jdbc.postgresql.org/

或者你可以自己实现这个功能 - 你可以从这里复制他们的实现:
http://grepcode.com/file/repo1.maven.org/maven2/org.postgresql/postgresql/9.4-1201-jdbc41/org/postgresql/jdbc4/AbstractJdbc4Connection.java#AbstractJdbc4Connection.isValid%28int%29

127    public boolean isValid(int timeout) throws SQLException
128    {
129        if (isClosed()) {
130            return false;
131        }
132     if (timeout < 0) {
133            throw new PSQLException(GT.tr("Invalid timeout ({0}<0).", timeout), PSQLState.INVALID_PARAMETER_VALUE);
134        }
135     boolean valid = false;
136        Statement stmt = null;
137     try {
138         if (!isClosed()) {
139             stmt = createStatement();
140             stmt.setQueryTimeout( timeout );
141             stmt.executeUpdate( "" );
142             valid = true;
143         }
144     }
145     catch ( SQLException e) {
146         getLogger().log(GT.tr("Validating connection."),e);
147     }
148     finally
149     {
150         if(stmt!=null) try {stmt.close();}catch(Exception ex){}
151     }
152        return valid;    
153}