From e711b4ec3e15322f5ad3c3963b4d39a22af0be83 Mon Sep 17 00:00:00 2001 From: SoLetsDev <74216496+SoLetsDev@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:26:11 -0700 Subject: [PATCH] WIP reverted spring.jpa.database-platform change. Also added spring.datasource.hikari.data-source-properties.reWriteBatchedInserts=true --- api/src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/main/resources/application.properties b/api/src/main/resources/application.properties index 70281f05..cf1bab0d 100644 --- a/api/src/main/resources/application.properties +++ b/api/src/main/resources/application.properties @@ -10,7 +10,7 @@ spring.mvc.log-request-details=${SPRING_SHOW_REQUEST_DETAILS} spring.datasource.url=${JDBC_URL} spring.datasource.username=${ORACLE_USERNAME} spring.datasource.password=${ORACLE_PASSWORD} -#spring.jpa.database-platform=org.hibernate.dialect.OracleDialect +spring.jpa.database-platform=org.hibernate.dialect.OracleDialect spring.jpa.hibernate.ddl-auto=none spring.jackson.deserialization.fail-on-unknown-properties=false @@ -123,4 +123,4 @@ logging.level.com.zaxxer.hikari.HikariConfig=DEBUG logging.level.com.zaxxer.hikari=TRACE spring.datasource.hikari.leak-detection-threshold=20000 #TODO remove after changed spring.jpa.properties.hibernate.generate_statistics=true -#TODO removed spring.jpa.database-platform=org.hibernate.dialect.OracleDialect +spring.datasource.hikari.data-source-properties.reWriteBatchedInserts=true \ No newline at end of file