I am administering a web service connected to a bunch of databases.
From time to time, the connection pool gets empty.
I adressed the issue with try-catch blocks to prevent a connection being taken forever, but to make sure everything is fine, I'd like to know the number of available connections at any time.
Is there a way to do so?
Thank you.