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.

Saturday, July 23, 2011

Home

.tg {border-collapse:collapse;border-spacing:0;border-color:#999;} .tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:#999;color:#444;background-color:#F7FDFA;} .tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:#999;color:#fff;background-color:#1292C6;} .tg .tg-s6z2{text-align:center} .tg .tg-vn4c{background-color:#D2E4FC} .tg...

Saturday, March 5, 2011

Under Progress

Few pages of this site are under progress and I am constantly trying to complete it ASAP. If you have any suggestions or ideas, please let me know. ...

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)...