I\'ve got a working Spring Boot Application that connects to a Postgres database. I\'ve got the project set up with an application.properties file, but would like to make th
application.yml file for postgresql
spring:
datasource:
driver-class-name: org.postgresql.Driver
username: postgres
password: root
url: jdbc:postgresql://localhost/postgres
platform: postgres
initialization-mode: always
continue-on-error: true
jpa:
show-sql: true
generate-ddl: true
hibernate:
ddl-auto: create
database: postgresql