| 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 1 of 1.
-
Easier said than done: connection pooling
2006-10-08 16:53:44 jpower [View]



I take special care in closing connections in finally block:
fnally {
}