This file contains hidden or 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
server.contextPath=/ | |
debug=true | |
# Spring data source needed for Spring boot to behave | |
# Pre Spring Boot v2.0.0.M6 without below Spring Boot defaults to tomcat-jdbc connection pool included | |
# in spring-boot-starter-jdbc and as compiled dependency under spring-boot-starter-data-jpa | |
spring.datasource.type=com.zaxxer.hikari.HikariDataSource | |
spring.datasource.url=jdbc:postgresql://localhost:5432/somedb | |
spring.datasource.username=dbuser | |
spring.datasource.password=dbpassword |