spring:
datasource:
url: jdbc:postgresql://localhost:5439/sopds
username: postgres
password: postgres
driver-class-name: org.postgresql.Driver
jpa:
hibernate:
ddl-auto: validate
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQLDialect
show_sql: false
format_sql: true
flyway:
enabled: true
locations: classpath:db/migration
baseline-on-migrate: true
thymeleaf:
cache: false
prefix: classpath:/templates/
server:
port: 8080
logging:
level:
ru.mcs.sopds: DEBUG
org.springframework.web: INFO