Beginner |
|
Joined: Thu Nov 02, 2006 2:23 pm Posts: 33
|
Hey,
i have the following hibernate properties file , and i wonder if i need "hibernate.connection.pool_size" in case that C3P0 connection poll configured.
My properties file (partial):
#################################
### Hibernate Connection Pool ###
#################################
hibernate.connection.pool_size 1
###########################
### C3P0 Connection Pool###
###########################
hibernate.c3p0.max_size 15
hibernate.c3p0.min_size 4
hibernate.c3p0.timeout 5000
hibernate.c3p0.max_statements 100
hibernate.c3p0.idle_test_period 3000
hibernate.c3p0.acquire_increment 2
hibernate.c3p0.validate false
|
|