HikariCP Configurations – Database Connection Pooling
For the Hikari connection pool configuration, we enable it by using spring.datasource.type and assigning it fully qualified name of the connection pool implementation in application.properties file as following. spring.datasource.type = com.zaxxer.hikari.HikariDataSource If we are using Spring Boot 2.0 and onwards, Spring Boot selects HikariDataSource by default and we need not to configure above line. Now to configure Hikari specific…
Read More “HikariCP Configurations – Database Connection Pooling” »