Skip to content

Instantly share code, notes, and snippets.

@wicaksana
Created December 17, 2016 22:49
Show Gist options
  • Save wicaksana/4315606ce0d640fbcd984d382287346a to your computer and use it in GitHub Desktop.
Save wicaksana/4315606ce0d640fbcd984d382287346a to your computer and use it in GitHub Desktop.
Spring Boot configuration file
#
# Database (postgresql)
#
spring.jpa.database=POSTGRESQL
spring.datasource.platform=postgres
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=create-drop
spring.database.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/spring_rest_service
spring.datasource.username=postgres
spring.datasource.password=postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment