Need code to create the connection pool in java?
How does we make sure that connection pool doesn\'t return the same object which is already in use?
How happens if client cl
If your application runs on a server, then configure as Data Source, where server will take care of Pooling or else if a simple Java Client then use Apache DBCP(if to the database) or else use Apache Commons Pooling API
See here: Apache Commons