Can't open connection

13,323

You increased max sessions on Oracle, but you didn't increase the max size of your connection pool. The exception is telling you that your pool is exhausted. Either find what's holding connections open and get them released sooner, or increase the number of max active connections in the pool.

Share:
13,323
Sam
Author by

Sam

My act is: "I don't know particular things, but I am trying learning new things any day." I like always learning new things about software or maybe hardware, especially in programming languages.

Updated on June 06, 2022

Comments

  • Sam
    Sam almost 2 years

    I develop an applivation with very load(request). I used following technologies in my appliation:

    1. Jpa/Hibernate as persistense layer
    2. Spring and Spring Dao
    3. C3p0 as connection pooling

    my problem is : I run my application , when number of request increase, throw exception in persistense layer that"Cannt open connection" I increase oracle max session but my problem not solve I indept in C3p0 document and test its options but my problem not solve.

    Thank you for your attention