解决"org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作"问题
程序员文章站
2022-04-21 23:48:47
...
今天今天SpringBoot集成PostgreSql启动的时会报"org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作"问题,并且不影响程序运行,但是看到非常难受,解决方法:
application.properties增加以下属性
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults = false
- 1
- 2
或者application.yml增加以下属性
spring:
jpa:
properties:
hibernate:
temp:
use_jdbc_metadata_defaults: false
上一篇: SpringMVC 全局异常处理
下一篇: springmvc全局异常处理
推荐阅读
-
PgSQL-JDBC:"org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作"问题
-
解决org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作
-
这个 org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作
-
springboot使用PostgreSQL的驱动依赖配置即解决org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作的问题
-
springboot2.x连接postgresql数据库报错: org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作
-
org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作
-
解决"org.postgresql.jdbc.PgConnection.createClob() 方法尚未被实作"问题