From 57a3e8ea5bf8256d1da4ff00b083d0b9f932cf85 Mon Sep 17 00:00:00 2001 From: matelrepo <42547380+matelrepo@users.noreply.github.com> Date: Tue, 20 Nov 2018 01:41:24 +0700 Subject: [PATCH] Add property which might lead to think it doesnt work It's not an error at all, actually. It's the result of a feature test. https://github.com/spring-projects/spring-boot/issues/12007 --- src/main/resources/application.properties | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index ef41a8d..ffc9e5b 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -23,4 +23,7 @@ spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.Im spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy # Allows Hibernate to generate SQL optimized for a particular DBMS -spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect \ No newline at end of file +spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect + +# Avoid Error org.postgresql.jdbc.PgConnection.createClob() is not yet implemented +spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true