Bonjour,
j'ai réussi à utiliser Hibernate sur un serveur Websphere et à créer un ejb qui se sert d'hibernate.
Il me reste malheureusement encore un problème de transaction avec la base de donnée.
Quelqu'un pourrait-il me montrer à quoi ressemble le hibernate.cfg.xml pour une utilisation sur WebSphere.
Pour le moment, j'ai ceci :
Code:
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.datasource">jdbc/Perso</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.dialect">net.sf.hibernate.dialect.SQLServerDialect</property>
<property name="hibernate.transaction.factory_class">net.sf.hibernate.transaction.JTATransactionFactory</property>
<property name="hibernate.transaction.manager_lookup_class">net.sf.hibernate.transaction.WebSphereTransactionManagerLookup</property>
<mapping resource="T_Agence.hbm.xml"/>
<mapping resource="T_Groupe.hbm.xml"/>
<mapping resource="T_Titulaire.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Merci de m'indiquer si ça semble correct ou non.
Une autre question.
Faut-il utiliser une source de données XA ou non ???
Merci.