pool « Default « JPA Q&A





1. Hibernate: What is the connection pool and why is the default one unsuitable for production?    stackoverflow.com

I'm very unfamiliar with Hibernate and have just started working on a web app that uses it with a MySQL database. I notice that the community documentation tutorial states: ...

2. Problem to switch from default connection pooling to DBCP    forum.hibernate.org

net.sf.hibernate.dialect.MySQLDialect com.mysql.jdbc.Driver jdbc:mysql://tiger/DokuStelleDB DokuStelleDBUser DokuStelleDBUser 10 false ...

3. Default connection pooling    forum.hibernate.org

Our team develops on Tomcat and deploys on Websphere. I see in the eBook that the default connection pooling is only suitable for development. Is this the pooling turned on by the following? hibernate.connection.pool_size 1 hibernate.statement_cache.size 25 The book reccommends C3P0 pooling: 1. can we use this pooling for development on Tomcat an in production on Websphere? 2. Is it advisable ...