Hibernate очень просто настраивается на использование JNDI-датасорса (уровня приложения или сервера приложений). Например, если в приложении используется пул c3p0 (у hibernate есть возможность использовать свой пул c3p0, но в моем случае хотелось, чтобы он использовал именно мой пул), сконфигурированный в context.xml так:
<Resource name="jdbc/myDb" auth="Container"
type="com.mchange.v2.c3p0.ComboPooledDataSource"
factory="org.apache.naming.factory.BeanFactory"
user="postgres" password="postgres" driverClass="org.postgresql.Driver"
jdbcUrl="jdbc:postgresql://postgresserver:5432/mydb"
maxPoolSize="50"
maxIdleTime="7200"
minPoolSize="5"
testConnectionOnCheckout="true"
idleConnectionTestPeriod="300"
maxIdleTimeExcessConnections="120"
maxAdministrativeTaskTime="600"
maxStatements="0"
maxStatementsPerConnection="0"/>
, и в web.xml ссылка на этот ресурс описана так:
<resource-ref>
<description>My DataBase</description>
<res-ref-name>jdbc/myDb </res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
, то конфигурация hibernate будет выглядеть следующим образом:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.connection.datasource">java:/comp/env/jdbc/myDb</property>
<property name="show_sql">true</property>
<!-- some mappings -->
<!-- ... -->
</session-factory>
</hibernate-configuration>
Комментариев нет:
Отправить комментарий