| Sign In/My Account | View Cart |
| Article: |
Database Connection Pooling with Tomcat | |
| Subject: | More pools for Tomcat | |
| Date: | 2006-04-25 10:42:50 | |
| From: | Kunal_Jaggi | |
|
Response to: More pools for Tomcat
|
||
|
Hello Mike, Connection pooling is a standard technique used for sharing resources among several requesting clients. In a typical Java EE environment,you can share both database and non-database resources. Other than JDBC Connection objects, you can share threads, sockets and JMS message queues (JMS API provides these two interfaces: javax.jms.QueueConnectionFactory and javax.jms.QueueConnection).
|
||
Showing messages 1 through 4 of 4.
I take special care in closing connections in finally block:
fnally {
}