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
| ## default connection pool | |
| spring.datasource.hikari.connectionTimeout=20000 | |
| spring.datasource.hikari.maximumPoolSize=5 | |
| ## PostgreSQL | |
| spring.datasource.url=jdbc:postgresql://localhost:5432/spring_web_blog | |
| spring.datasource.username=postgres | |
| spring.datasource.password=postgres | |
| #drop n create table again, good for testing, comment this in production |