简体   繁体   中英

Hibernate JPA too many connections

I keep hitting max number of connections after each web service call. It looks like EntityManager is being created every single time and creating a new connection to the database but it never fully closes or releases the connection. I always max's out my connections and i can never connect again or run any queries after the initial calls.

Do i need to use SessionManager/SessionFactory or something instead of using EntityManager?

I also tried not using a static Connection cconn and keep getting a connection with EntityManager and then closing the em in a finally block but i still get the error. I am new to JPA so is it my design, my settings, code, everything?

Getting a connection - ConnectionUtil.java

public static Connection cconn = null;

public static Connection conn(){

        try {
            if(ConnectionUtil.cconn != null && !ConnectionUtil.cconn.isClosed()){
                return cconn;
            }
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        Connection conn = null;
        try {
            String lcp = ConnectionUtil.getLcp();
            logging.info("LCP : " + lcp);

            EntityManagerFactory factory = null;
            Map<String,Object> prop = null;

            String url ,password, user, connString;

            // Set default Connection details
            if(lcp == null){
                factory = Persistence.createEntityManagerFactory(LOCAL_PER);
                prop = factory.getProperties();

                url = (String) prop.get("javax.persistence.jdbc.url");
                password = (String)  prop.get("javax.persistence.jdbc.password");
                user = (String)  prop.get("javax.persistence.jdbc.user");
                connString = url +"?user="+user+"&password="+password;

                connString = "jdbc:mysql://localhost:3306/"+ConnectionUtil.DATABASE+"?" + "user=root&password=password";
                logging.info("Setting EntityManager to: default values");
                logging.info("Using string: "+ connString);
                Properties properties = new Properties();
                properties.put("connectTimeout", "20000");
                conn = DriverManager.getConnection(connString,properties);
                cconn = conn;
            }

persistance.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">

    <persistence-unit name="Hunting" transaction-type="RESOURCE_LOCAL">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <properties>
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/database"/>
            <property name="javax.persistence.jdbc.user" value="root"/>
            <property name="javax.persistence.jdbc.password" value="password"/>
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>


            <!-- Hibernate properties -->
            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.format_sql" value="false" />
            <property name="hibernate.connection.release_mode" value="on_close" />
            <property name="hibernate.connection.pool_size" value="100" />


            <!-- Configuring Connection Pool -->
            <property name="hibernate.c3p0.min_size" value="5" />
            <property name="hibernate.c3p0.max_size" value="20" />
            <property name="hibernate.c3p0.timeout" value="20" />
            <property name="hibernate.c3p0.max_statements" value="50" />
            <property name="hibernate.c3p0.idle_test_period" value="2000" />
        </properties>
    </persistence-unit>

Getting the club users from a function in my webservice.

public static Club getClubById(long id){
        Club cc = new Club();
        EntityManager em = null;
        try{
            em =  ConnectionUtil.getEnitityManager();
            cc = em.find(Club.class, id );
            cc.buildClubUsers();
        }finally{
            if(em != null){
                em.close();
            }
        }
        return cc;
    }

Connection Error

15:32:26.315 [http-bio-8080-exec-7] WARN org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator - HHH000022: c3p0 properties were encountered, but the org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider provider class was not found on the classpath; these properties are going to be ignored.
15:32:26.315 [http-bio-8080-exec-7] INFO org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!)
15:32:26.315 [http-bio-8080-exec-7] INFO org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 100
15:32:26.315 [http-bio-8080-exec-7] INFO org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: true
15:32:26.315 [http-bio-8080-exec-7] INFO org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl - HHH000401: using driver [com.mysql.jdbc.Driver] at URL [jdbc:mysql://localhost:3306/database]
15:32:26.315 [http-bio-8080-exec-7] INFO org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=root, password=password, autocommit=true, release_mode=on_close}
15:32:26.315 [http-bio-8080-exec-7] DEBUG org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl - Opening new JDBC connection
15:32:26.316 [http-bio-8080-exec-7] WARN org.hibernate.engine.jdbc.internal.JdbcServicesImpl - HHH000342: Could not obtain connection to query metadata : Data source rejected establishment of connection,  message from server: "Too many connections"

Edit: 1 Added c3po and got the same "Too many connections" error

Mar 05, 2017 3:46:17 PM com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask run
WARNING: com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask@214b8c9 -- Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception: 
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Data source rejected establishment of connection,  message from server: "Too many connections"

I'd suggest relying on your container to let it manage your Transactions. In my following answer I therefore assume you're using any WebContainer capable of managing JPA-Transaction - which most state-of-the-art are capable of.

hence, you have to change your persistance.xml

<persistence-unit name="Hunting" transaction-type="JTA">

Why JTA over RESOURCE_LOCAL? in short: you don't have to manage transactions yourself. https://stackoverflow.com/a/28998110/3507356

Then adjust you POJO

@PersistenceContext("Hunting")
EntityManager em;

public static Club getClubById(long id){
    Club cc = new Club();
    EntityManager em = null;
    try{
        // em =  ConnectionUtil.getEnitityManager();
        // EM is injected
        cc = em.find(Club.class, id );
        cc.buildClubUsers();
    }finally{
        if(em != null){
            em.close();
        }
    }
    return cc;
}

I currently then assume your Club-class is annotated as an @Entity with proper field-annotation etc.

I guess you can then get rid of your ConnectionUtil then as you only have to inject your Club-jpa-service into your webservice and use it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM