What is the default value for maximum connections in a postgres database with tomcat connection pool using spring-boot ?
There is a spring.datasource.maxActive property, but when I try to sysout it, I get an exception:
@Value("${spring.datasource.maxActive}") private String act;
java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.datasource.maxActive' in string value "${spring.datasource.maxActive}
source share