From e0aa205976c4a916acb25aae77a1e0bbbb807ada Mon Sep 17 00:00:00 2001 From: Jan-Niclas Struewer <j.n.struewer@gmail.com> Date: Thu, 7 Sep 2023 13:32:33 +0200 Subject: [PATCH] testing hibernate jdbc setting to hopefully suppress driver's clob not implemented error --- src/main/resources/application.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index a1ca6357..25ea4cb5 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -21,4 +21,6 @@ spring.jpa.properties.hibernate.format_sql=true spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true spring.jpa.properties.hibernate.bytecode.use_reflection_optimizer=false spring.jpa.open-in-view=false +spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false +#spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true #logging.level.root=DEBUG \ No newline at end of file -- GitLab