Compare commits

...

2 Commits

View File

@ -1,3 +1,6 @@
info:
app:
version: @project.version@
spring:
application:
name: portfolio-api
@ -11,7 +14,6 @@ spring:
properties:
hibernate.transaction.jta.platform: org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform
hibernate:
dialect: org.hibernate.dialect.H2Dialect
format_sql: true
show-sql: true
@ -29,7 +31,7 @@ server:
port: 8080
servlet:
context-path: /api
forward-headers-strategy: framework
---
spring:
@ -42,7 +44,10 @@ spring:
driver-class-name: org.h2.Driver
username: sa
password:
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.H2Dialect
h2:
console:
enabled: true
@ -60,7 +65,13 @@ spring:
username: ${DB_USER:postgres}
password: ${DB_PASSWORD:postgres}
driver-class-name: org.postgresql.Driver
hikari:
maximum-pool-size: 3
minimum-idle: 1
idle-timeout: 30000
connection-timeout: 10000
leak-detection-threshold: 10000
jpa:
hibernate:
ddl-auto: validate
ddl-auto: update