这个 org.postgresql.jdbc4.Jdbc4Connection.isValid(int) 方法尚未被实作

spring boot + mybatis +postgrepSQL开发应用,当运行的是报错:

java.sql.SQLFeatureNotSupportedException: 这个 org.postgresql.jdbc4.Jdbc4Connection.isValid(int) 方法尚未被实作。

 

原因:pom文件中引入的依赖不对!针对postgrepSQL有2个依赖:

 

第一个:



    postgresql
    postgresql
    9.1-901-1.jdbc4

 

第二个



    org.postgresql
    postgresql
    42.2.7

 

 

使用第一个jar包导致的错误,使用第二个jar即可!

你可能感兴趣的:(spring,boot,postgrepSQL,mybatis)