Created
December 17, 2016 22:49
-
-
Save wicaksana/4315606ce0d640fbcd984d382287346a to your computer and use it in GitHub Desktop.
Spring Boot configuration file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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