Fix outdated (and maybe wrong) jpa related properties (#1702)
Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user