I'm using JSTL to do database queries. My server is Tomcat 5.5.x. The JDBC pooling query handling looks something like this :
<sql:query var='exploring' datasource='jdbc/pool' scope='request' />
jdbc/pool is defined as a resourcelink in context.xml for the web app and the as Resource in server.xml. So essentiallly, the application is using connection pooling.
I have several books on JSTL and not one of them tells me how to close connections. Is it safe to say that that happens behind the scenes because I am using connection pooling?
Start Free Trial