Connection Pool overview

What is connection Pool ? Connection pooling is the technique used to increase the performance of the application when an application makes a multiple connection requests. Connection pooling takes care of managing connections(prepare,open and close) How connection pool works ? Connection Pool API is responsible for opening N connections and leave them ready for our […]

Share this article on

Hibernate with C3PO connection pool

Please Check Connection Pool Overview article to understand the basics of Connectiool Let us understand Hibernate with C3PO connection pool Step 1 Create hibernate project Please refer Hibernate setup in eclipse article on how to do it. Step 2 Update pom.xml with Hibernate and connection pool provider dependencies <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> […]

Share this article on