Method org.postgresql.jdbc4.Jdbc4Connection.isValid(int) is not yet implemented

后端 未结 7 758
时光说笑
时光说笑 2020-12-06 03:42

I am trying to configure dbcp2 with postgres 9.1

When I run my app, it throws exception:

Exception in thread \"main\" org.springframework.jdbc.Cannot         


        
相关标签:
7条回答
  • 2020-12-06 04:46

    Try this dependency: this will solve this problem

         <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>42.2.14</version>
        </dependency>
    
    0 讨论(0)
提交回复
热议问题