Fix outdated (and maybe wrong) jpa related properties (#1702)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-04-09 13:53:12 +03:00
committed by GitHub
parent 85e2299e53
commit 718c7381f4
3 changed files with 3 additions and 8 deletions

View File

@@ -482,7 +482,6 @@ public class RepositoryApplicationConfiguration extends JpaBaseConfiguration {
@Override @Override
protected Map<String, Object> getVendorProperties() { protected Map<String, Object> getVendorProperties() {
final Map<String, Object> properties = new HashMap<>(7); final Map<String, Object> properties = new HashMap<>(7);
// Turn off dynamic weaving to disable LTW lookup in static weaving mode // Turn off dynamic weaving to disable LTW lookup in static weaving mode
properties.put(PersistenceUnitProperties.WEAVING, "false"); properties.put(PersistenceUnitProperties.WEAVING, "false");
@@ -490,7 +489,7 @@ public class RepositoryApplicationConfiguration extends JpaBaseConfiguration {
properties.put(PersistenceUnitProperties.ALLOW_NATIVE_SQL_QUERIES, "true"); properties.put(PersistenceUnitProperties.ALLOW_NATIVE_SQL_QUERIES, "true");
// flyway // flyway
properties.put(PersistenceUnitProperties.DDL_GENERATION, "none"); properties.put(PersistenceUnitProperties.DDL_GENERATION, "none");
// Embeed into hawkBit logging // Embed into hawkBit logging
properties.put(PersistenceUnitProperties.LOGGING_LOGGER, "JavaLogger"); properties.put(PersistenceUnitProperties.LOGGING_LOGGER, "JavaLogger");
// Ensure that we flush only at the end of the transaction // Ensure that we flush only at the end of the transaction
properties.put(PersistenceUnitProperties.PERSISTENCE_CONTEXT_FLUSH_MODE, "COMMIT"); properties.put(PersistenceUnitProperties.PERSISTENCE_CONTEXT_FLUSH_MODE, "COMMIT");
@@ -498,7 +497,6 @@ public class RepositoryApplicationConfiguration extends JpaBaseConfiguration {
properties.put(PersistenceUnitProperties.BATCH_WRITING, "JDBC"); properties.put(PersistenceUnitProperties.BATCH_WRITING, "JDBC");
// Batch size // Batch size
properties.put(PersistenceUnitProperties.BATCH_WRITING_SIZE, "500"); properties.put(PersistenceUnitProperties.BATCH_WRITING_SIZE, "500");
return properties; return properties;
} }

View File

@@ -17,14 +17,12 @@ spring.jpa.show-sql=false
# (see details: https://github.com/eclipse-ee4j/eclipselink/issues/1393) # (see details: https://github.com/eclipse-ee4j/eclipselink/issues/1393)
spring.datasource.url=jdbc:h2:mem:testdb;MODE=LEGACY; spring.datasource.url=jdbc:h2:mem:testdb;MODE=LEGACY;
# Logging # Logging
spring.datasource.eclipselink.logging.logger=JavaLogger
spring.jpa.properties.eclipselink.logging.level=off spring.jpa.properties.eclipselink.logging.level=off
# Cluster aware # Cluster aware
spring.datasource.eclipselink.query-results-cache=false spring.jpa.properties.eclipselink.query-results-cache=false
spring.datasource.eclipselink.cache.shared.default=false spring.jpa.properties.eclipselink.cache.shared.default=false
# Flyway DDL # Flyway DDL
spring.flyway.enabled=true spring.flyway.enabled=true
spring.flyway.init-on-migrate=true
spring.flyway.clean-disabled=true spring.flyway.clean-disabled=true
spring.flyway.sql-migration-suffixes=${spring.jpa.database}.sql spring.flyway.sql-migration-suffixes=${spring.jpa.database}.sql
spring.flyway.table=schema_version spring.flyway.table=schema_version

View File

@@ -13,7 +13,6 @@
logging.level.root=ERROR logging.level.root=ERROR
logging.level.org.eclipse.hawkbit.repository.test.matcher.EventVerifier=ERROR logging.level.org.eclipse.hawkbit.repository.test.matcher.EventVerifier=ERROR
logging.level.org.eclipse.persistence=ERROR logging.level.org.eclipse.persistence=ERROR
spring.datasource.eclipselink.logging.logger=JavaLogger
spring.jpa.properties.eclipselink.logging.level=FINE spring.jpa.properties.eclipselink.logging.level=FINE
spring.jpa.properties.eclipselink.logging.level.sql=FINE spring.jpa.properties.eclipselink.logging.level.sql=FINE
spring.jpa.properties.eclipselink.logging.parameters=true spring.jpa.properties.eclipselink.logging.parameters=true