Hibernate && NetBeans
Fermé
yassienrt
Messages postés
26
Date d'inscription
mercredi 16 mai 2007
Statut
Membre
Dernière intervention
5 octobre 2010
-
24 juin 2009 à 13:49
lin - 13 juil. 2009 à 15:49
lin - 13 juil. 2009 à 15:49
A voir également:
- Hibernate && NetBeans
- Telecharger netbeans 8.2 - Télécharger - Édition & Programmation
- Problème run netbeans 7.2.1 ✓ - Forum Java
- Interface graphique sous netbeans ✓ - Forum Programmation
- Hibernate detached entity passed to persist - Forum Java
- Probleme de déploiement sous GlassFish avec NetBeans ✓ - Forum Java
1 réponse
Bonjour,
Essaie de mettre la valeur de current_session_context_class à thread, voir l'exemple ci-dessous.
lin.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5433/tabase</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.connection.password">postgres</property>
<!-- Nous utilisons un thread local pour la session -->
<property name="current_session_context_class">thread</property>
<property name="connection.pool_size">1</property>
<property name="show_sql">true</property>
<mapping resource="bw/entites/myobject.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Essaie de mettre la valeur de current_session_context_class à thread, voir l'exemple ci-dessous.
lin.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5433/tabase</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.connection.password">postgres</property>
<!-- Nous utilisons un thread local pour la session -->
<property name="current_session_context_class">thread</property>
<property name="connection.pool_size">1</property>
<property name="show_sql">true</property>
<mapping resource="bw/entites/myobject.hbm.xml"/>
</session-factory>
</hibernate-configuration>