argos/dmp-backend/web/src/main/resources/config/db.yml

34 lines
905 B
YAML
Raw Normal View History

2023-11-08 12:37:16 +01:00
#database:
# driver-class-name: org.postgresql.Driver
# lock-fail-interval: 120000
# url: ${DB_URL:}
# username: ${DB_USER:}
# password: ${DB_PASS:}
spring:
jpa:
properties:
2024-02-21 08:55:29 +01:00
org:
hibernate:
flushMode: MANUAL
2023-11-08 12:37:16 +01:00
hibernate:
2024-01-11 15:40:53 +01:00
globally_quoted_identifiers: true
2023-11-08 12:37:16 +01:00
ddl-auto: validate
dialect: org.hibernate.dialect.PostgreSQLDialect
hibernate:
naming:
2024-03-29 13:32:47 +01:00
physical-strategy: eu.eudat.configurations.db.PrefixPhysicalNamingStrategy
2023-11-08 12:37:16 +01:00
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
2024-03-29 13:32:47 +01:00
naming-strategy:
prefix: