2017-06-08 11:07:48 +02:00
|
|
|
#
|
|
|
|
|
# Copyright (c) 2015 Bosch Software Innovations GmbH and others.
|
|
|
|
|
#
|
|
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
|
# are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
|
# which accompanies this distribution, and is available at
|
|
|
|
|
# http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
|
#
|
|
|
|
|
|
2019-01-31 07:29:27 +01:00
|
|
|
spring.main.allow-bean-definition-overriding=true
|
|
|
|
|
|
2017-06-08 11:07:48 +02:00
|
|
|
### JPA / Datasource - START
|
|
|
|
|
spring.jpa.database=H2
|
|
|
|
|
spring.jpa.show-sql=false
|
2020-01-30 13:44:25 +01:00
|
|
|
spring.datasource.url=jdbc:h2:mem:testdb;MODE=MySQL;
|
2017-06-08 11:07:48 +02:00
|
|
|
# Logging
|
|
|
|
|
spring.datasource.eclipselink.logging.logger=JavaLogger
|
|
|
|
|
spring.jpa.properties.eclipselink.logging.level=off
|
|
|
|
|
# Cluster aware
|
|
|
|
|
spring.datasource.eclipselink.query-results-cache=false
|
|
|
|
|
spring.datasource.eclipselink.cache.shared.default=false
|
|
|
|
|
# Flyway DDL
|
2019-01-31 07:29:27 +01:00
|
|
|
spring.flyway.enabled=true
|
|
|
|
|
spring.flyway.init-on-migrate=true
|
|
|
|
|
spring.flyway.clean-disabled=true
|
|
|
|
|
spring.flyway.sql-migration-suffixes=${spring.jpa.database}.sql
|
|
|
|
|
spring.flyway.table=schema_version
|
2017-06-08 11:07:48 +02:00
|
|
|
### JPA / Datasource - END
|