Hello everyone,
Im using hibernate with a connection provided by tomcat using:
Code:
property name="connection.datasource">
java:comp/env/l2bhiponac
</property>
My question is: Is hibernate using only the provided pool or is it using an internal pool to manage the connections provided by tomcat?.
I ask because I know that hibernate default pool is not intended for production use and I don't know if I need to configure c3p0 when I'm using connection.datasource or not.
Thank you for every info you could give me.