-->
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.  [ 2 posts ] 
Author Message
 Post subject: problem avec <generator class="vm"/>
PostPosted: Fri Feb 20, 2009 6:24 pm 
Regular
Regular

Joined: Wed Jan 28, 2009 8:31 pm
Posts: 54
bonjour tout le monde nouveau probleme avec hibernate
vraiment mon apprentissage se fait pas facile
Code:

<hibernate-mapping package="ca.canassistance.pojo">
   <class
      name="Xc4dvoyPojo"
      table="XC4DVOY"
   >
      <meta attribute="sync-DAO">false</meta>
      <id
         name="id"
         type="integer"
         column="ID"
      >
         <generator class="vm"/>
      </id>


mon code
Code:

public void save(ca.canassistance.pojo.Xc4dvoyPojo pojo)
         throws HibernateException, Exception {
      Session session = null;

      // Transaction tx = null;
      try {
         session = HibernateUtil.getSessionFactory().getCurrentSession();

         session.beginTransaction();
         session.save(pojo);

         session.getTransaction().commit();

      } catch (HibernateException e) {
         session.getTransaction().rollback();
         e.printStackTrace();

         throw new ServiceException(e.getMessage(), e);

      } finally {

         HibernateUtil.getSessionFactory().close();

      }

   }



la console
Quote:

Initial SessionFactory creation failed.org.hibernate.MappingException: could not instantiate id generator [entity-name=ca.canassistance.pojo.Xc4dvoyPojo]

le tout fonctionnait tres bien avec hibernate 2

j ai meme essaye sans succes
Code:

<generator class="narative"/>

merci pour l aide a tous


Top
 Profile  
 
 Post subject: Re: problem avec <generator class="vm"/>
PostPosted: Mon Aug 31, 2009 5:56 am 
Newbie

Joined: Mon Aug 31, 2009 5:43 am
Posts: 1
Tu as surement du résoudre ton problème depuis, mais je poste malgrès tout une réponse pour tout ceux qui galère...

Le problème vient de la classe <generator> dans le fichier hbm. Par défaut, Hibernate affecte la valeur "vm". Or, il est souvent nécessaire de modifier cette valeur pour être compatible avec ta base de donnée..
La class generator permet d'assigner une valeur unique à une clé primaire lors d'un nouvel enreigstrement dans une table.

Pour ma part, J'utilise MySQL et ai modifié le champs generator avec la valeur suivante :

<generator class="identity">

Tu peux retrouver les différentes valeurs possible ici


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

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.