-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: INFO org.hibernate.cfg.Environment - hibernate.pr
PostPosted: Fri Apr 08, 2011 5:41 pm 
Newbie

Joined: Fri Apr 08, 2011 9:38 am
Posts: 2
salut tout le monde, lors de l’exécution d'un test d'une DAO, j'ai eu ces erreurs :

131 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.6.1.Final
133 [main] INFO org.hibernate.cfg.Environment - hibernate.properties not found
136 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : javassist
140 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
207 [main] INFO org.hibernate.cfg.Configuration - configuring from resource: /reservation/src/hibernate.cfg.xml
207 [main] INFO org.hibernate.cfg.Configuration - Configuration resource: /reservation/src/hibernate.cfg.xml

voila ma classe DAO :

package hibernate;

import java.util.ArrayList;

import metier.Modele;

import org.hibernate.Session;

import dao.DAOModele;

public class DAOModeleHBM extends DAOHibernate implements DAOModele {
public void delete(Modele modele) throws Exception {
Session session = connect();

session.delete(modele);
modele.setId(-1);

close(session);
}

public Modele get(int id) throws Exception {
Modele modele = null;
Session session = connect();

modele = (Modele) session.get(Modele.class, id);

close(session);
return modele;
}

@SuppressWarnings("unchecked")
public ArrayList<Modele> loadAll() throws Exception {
ArrayList<Modele> tab = null;
Session session = connect();

tab = (ArrayList<Modele>) session.createQuery("FROM modele")
.list();

close(session);
return tab;
}

public void save(Modele modele) throws Exception {
Session session = connect();

session.save(modele);

close(session);
}

public void update(Modele modele) throws Exception {
Session session = connect();

session.update(modele);

close(session);
}
}
et voila le mapping de la classe Modele:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd ">
<hibernate-mapping>
<class name="metier.Modele" table="modele" lazy="false">
<id name="id" type="integer" column="id_modele">
<generator class="native"/>
</id>
<property name="typeMod" type="string" column="typemod"/>
<property name="bain" type="boolean" column="bain"/>
<property name="douche" type="boolean" column="douche"/>
<property name="wc" type="boolean" column="wc"/>
<property name="nbLitSimple" type="integer" column="nblitsimple"/>
<property name="nbLitDouble" type="integer" column="nblitdouble"/>
<property name="television" type="boolean" column="television"/>
<property name="climatiseur" type="boolean" column="climatiseur"/>
<property name="fumeur" type="boolean" column="fumeur"/>
<property name="description" type="boolean" column="description"/>
<set name="listeChambre" lazy="false" cascade="all">
<key column="id_modele" />
<one-to-many class="metier.Chambre"/>
</set>
<set name="listeReservation" lazy="false" cascade="all">
<key column="id_modele" />
<one-to-many class="metier.Reservation"/>
</set>
<set name="listeSaison" table="tarif">
<key column="id_modele"/>
<many-to-many column="id_saison"
class="Saison"/>
</set>
</class>

</hibernate-mapping>
et enfin le fichier de Hibernate.cfg.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.url">jdbc:mysql://http://localhost/phpmyadmin/easyreservation</property>
<property name="connection.username">root</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="connection.password"></property>
<property name="hibernate.show_sql">true</property>

<!-- mapping files -->

<mapping resource="MappingChambre.hbm.xml"/>
<mapping resource="MappingClient.hbm.xml"/>
<mapping resource="MappingCompteClient.hbm.xml"/>
<mapping resource="MappingConferenceBanquet.hbm.xml"/>
<mapping resource="MappingConsommation.hbm.xml"/>
<mapping resource="MappingFacture.hbm.xml"/>
<mapping resource="MappingLigneFacture.hbm.xml"/>
<mapping resource="MappingModele.hbm.xml"/>
<mapping resource="MappingPromotionEnfant.hbm.xml"/>
<mapping resource="MappingPromotionTypeCli.hbm.xml"/>
<mapping resource="MappingReservation.hbm.xml"/>
<mapping resource="MappingRestaurant.hbm.xml"/>
<mapping resource="MappingSaison.hbm.xml"/>
<mapping resource="MappingSportLoisirs.hbm.xml"/>
<mapping resource="MappingTarif.hbm.xml"/>
<mapping resource="MappingTypeConsommation.hbm.xml"/>
<mapping resource="MappingTypePayement.hbm.xml"/>
<mapping resource="MappingUtilisateursSys.hbm.xml"/>



</session-factory>
</hibernate-configuration>

J'ai besoin de vos conseils, s'il vous plait veuillez me répondre . Merci à vous :-)


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.