# # 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 # ### JPA / Datasource - START spring.jpa.database=H2 spring.jpa.show-sql=false # 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 flyway.enabled=true flyway.initOnMigrate=true flyway.cleanDisabled=true flyway.sqlMigrationSuffix=${spring.jpa.database}.sql ### JPA / Datasource - END