I have one spring boot application and am using managed postgres as backend. I do not have any admin permissions on postgres.
If i do not mention anything in my spring boot application, does that mean is it using some connection pooling?
my spring boot application.yml is like below
spring:
profiles: prod
datasource:
driver-class-name: org.postgresql.Driver
url: <<jdbc-url>>
username: prddb
password:
tomcat:
validation-interval: 30000
test-on-borrow: true
validation-query: SELECT 1
when check i dashboard, my apps almost using all connections .