From fdf3c722f43462a336f1acf882695cfed86a5de2 Mon Sep 17 00:00:00 2001 From: Memet Rusidovski <64790786+memetrusidovski@users.noreply.github.com> Date: Wed, 30 Dec 2020 20:44:53 -0500 Subject: [PATCH] The postgres Dialect only worked for me with 95 I've seen isn't supported anymore org.hibernate.dialect.PostgreSQLDialect and is now org.hibernate.dialect.PostgreSQL95Dialect --- src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 050d2dd..f1ba270 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -3,11 +3,11 @@ spring.datasource.username= postgres spring.datasource.password= 123 spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation= true -spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect +spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQL95Dialect # Hibernate ddl auto (create, create-drop, validate, update) spring.jpa.hibernate.ddl-auto= update # App Properties bezkoder.app.jwtSecret= bezKoderSecretKey -bezkoder.app.jwtExpirationMs= 86400000 \ No newline at end of file +bezkoder.app.jwtExpirationMs= 86400000