blob: 6ed69ea045f18f6783955f8c8d1cfb950d393792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
spring:
datasource:
url: jdbc:h2:mem:testdb
driverClassName: org.h2.Driver
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.H2Dialect
hibernate:
ddl-auto: update
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
implicit-strategy: org.onap.policy.common.spring.utils.CustomImplicitNamingStrategy
database:
name: PolicyProviderParameterGroup
implementation: org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl
driver: org.h2.Driver
url: jdbc:h2:mem:testdb
user: policy_user
password: policy_user
persistenceUnit: ToscaConceptTest
|