Default HikariCP connection pool starting Spring Boot application
问题 I'm using version: 2.1.6.RELEASE form Spring Boot in my pom.xml-dependencies. To connect to my database I put following in application.properties: spring.datasource.url= jdbc:postgresql:// spring.datasource.username= spring.datasource.password= When checking the amount of connections in postgresql with: SELECT * FROM pg_stat_activity; I see each time I start the application exactly 10 connections are made. They almost all have the same query: SET application_name = 'PostgreSQL JDBC Driver' Is