Files
gremiumhub/legalconsenthub-backend/src/main/resources/application.yaml

49 lines
975 B
YAML

spring:
application:
name: legalconsenthub
datasource:
hikari:
auto-commit: false
url: jdbc:h2:mem:legalconsenthub-database
username: user
password: pw
jpa:
show-sql: true
hibernate:
ddl-auto: create
database-platform: org.hibernate.dialect.PostgreSQLDialect
properties:
hibernate:
format_sql: true
jdbc:
batch_size: 100
order_inserts: true
enable_lazy_load_no_trans: true
# security:
# oauth2:
# resourceserver:
# jwt:
# issuer-uri: http://192.168.178.105:3001
# jwk-set-uri: http://192.168.178.105:3001/api/auth/jwks
# jws-algorithms: ES512
liquibase:
enabled: true
drop-first: false
change-log: classpath:/db/changelog/db.changelog-master.yaml
default-schema: public
sql:
init:
platform: h2
logging:
level:
org:
springframework:
security: TRACE
oauth2: TRACE