You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
840 B
YAML

spring:
jpa:
generate-ddl: true
management:
endpoints:
web:
exposure:
include: "*"
endpoint:
health:
show-details: always
---
spring:
config:
activate:
on-profile: http2
server:
http2:
enabled: true
---
spring:
config:
activate:
on-profile: mysql
datasource:
url: "jdbc:mysql://localhost/music"
driver-class-name: com.mysql.jdbc.Driver
username:
password:
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.MySQL55Dialect
---
spring:
config:
activate:
on-profile: postgres
datasource:
url: "jdbc:postgresql://localhost/music"
driver-class-name: org.postgresql.Driver
username: postgres
password:
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.ProgressDialect