Hi all,
I'm newbie to Hibernate and I have the following problem: in my application, SessionFactory.getStatistics() says that the number of closed sessions is equal to the number of open sessions. However, the physical number of open connections to the database is larger than the hibernate.c3p0.max_size configuration in a given moment (for example, it's equal to 6). My connection pool configurations are:
<property name="hibernate.c3p0.acquire_increment">5</property>
<property name="hibernate.c3p0.idle_test_period">300</property>
<property name="hibernate.c3p0.initialPoolSize">1</property>
<property name="hibernate.c3p0.max_size">5</property>
<property name="hibernate.c3p0.timeout">300</property>
<property name="hibernate.c3p0.max_statements">50</property>
<property name="hibernate.c3p0.min_size">1</property>
Does anyone have any idea about what may be happening?
Thanks in advance,
Monique
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
Mapping documents:
Code between sessionFactory.openSession() and session.close():
Full stack trace of any exception that occurs:
Name and version of the database you are using:
The generated SQL (show_sql=true):
Debug level Hibernate log excerpt:
Problems with Session and transaction handling?
Read this:
http://hibernate.org/42.html