34 lines
907 B
YAML
34 lines
907 B
YAML
|
#database:
|
||
|
# driver-class-name: org.postgresql.Driver
|
||
|
# lock-fail-interval: 120000
|
||
|
# url: ${DB_URL:}
|
||
|
# username: ${DB_USER:}
|
||
|
# password: ${DB_PASS:}
|
||
|
spring:
|
||
|
jpa:
|
||
|
properties:
|
||
|
org:
|
||
|
hibernate:
|
||
|
flushMode: MANUAL
|
||
|
hibernate:
|
||
|
globally_quoted_identifiers: true
|
||
|
ddl-auto: validate
|
||
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
||
|
hibernate:
|
||
|
naming:
|
||
|
physical-strategy: eu.eudat.data.namingstrategy.PrefixPhysicalNamingStrategy
|
||
|
implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
|
||
|
datasource:
|
||
|
url: ${DB_URL:}
|
||
|
username: ${DB_USER:}
|
||
|
password: ${DB_PASS:}
|
||
|
driver-class-name: org.postgresql.Driver
|
||
|
hikari:
|
||
|
connection-timeout: 30000
|
||
|
minimum-idle: 3
|
||
|
maximum-pool-size: 10
|
||
|
idle-timeout: 600000
|
||
|
max-lifetime: 1800000
|
||
|
|
||
|
naming-strategy:
|
||
|
prefix:
|