Hello,
I have found in the documentation (
http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html) about connection pooling:
Quote:
Hibernate's own connection pooling algorithm is, however, quite rudimentary. It is intended to help you get started and is not intended for use in a production system, or even for performance testing.
This is quite intereting to know, cause we are about to put our application into production. So then I read:
Quote:
You should use a third party pool for best performance and stability. Just replace the hibernate.connection.pool_size property with connection pool specific settings. This will turn off Hibernate's internal pool. For example, you might like to use c3p0.
So I tried to use c3p0 and after a lot of problems I discovered that it doesn't support XA Transaction.
I have been searching the net trying to find any other third party pool that support XA Datasource and right know I am struggling...
So my question is, Is there any other connection pool that really support XA Datasource? Too bad c3p0 does not, it has everything that I need.
Thanks in advance
A newbie Spanier in the world of Hibernate