icon
Leave a message

Welcome to Java4u

A Single Place for all Java Resources

Looking for something?

Subscribe to this blog!

Receive the latest posts by email.

.Just enter your email below if you want to subscribe!

Email

OAuth 2.0

OAuth 2.0 is an open authorization framework and mainly focuses on authorization flows fand secures access to many well-known web APIs.

Friday, February 25, 2011

Connection Pooling

Problem with traditional approach Connection Management: 1. This approach is time consuming task, since this is including the time taken for opening the database session (connection) & closing the database session into request processing time. 2. This approach reduces the availability of the resources (database connections). 3. Decreases our system performances. Solution to the above problem is given in the form of Connection Pooling. Q .What is Connection Pooling? It’s a process of creating and storing database connections into buffer (or)...