Hibernate / Hibernate Interview Questions III
How to configure application server JNDI DataSource with Hibernate framework?
For web applications, it is ideal to have the servlet container manage the connection pool. This is achieved by defining JNDI resource for DataSource and use it in the web application. Use the below property to set the JNDI DataSource name.
<property name="hibernate.connection.datasource">java:comp/env/jdbc/MyDBJNDI</property>
More Related questions...