-->
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: Méthode « refresh » des EntityManager d’Hibernate v3.6.
PostPosted: Sat Oct 23, 2010 8:59 am 
Newbie

Joined: Sat Oct 23, 2010 8:40 am
Posts: 2
Bonjour,

Le code suivant révèle une exception lors de la méthode « em.refresh(p) » :
1: EntityManager em = emf.createEntityManager();
2: em.getTransaction().begin();
3:
4: Product p = new Product("J&D", 35.0,"Whisky");
5: em.persist(p);
6 :
7: em.refresh(p);
8: em.getTransaction().commit();
9: em.close();

Un debug montre qu’en ligne 6, Hibernate n’a pas (encore) envoyé le statement INSERT à la DB. Il fait comme prévu : il l’enverra lorsqu’il sera obligé.

A la ligne 7, l’exception suivante se déclenche :
L’exception est la suivante : Exception in thread "main" javax.persistence.PersistenceException: org.hibernate.HibernateException: this instance does not yet exist as a row in the database

Si on insère à la ligne 6 une instruction qui oblige Hibernate à faire un flush, l’INSERT est envoyé avant la ligne 7 et le refresh s’exécute sans problème.
On peut par exemple, insérer un select :

6 : em.createQuery("select p from Product p").getResultList();

Ou même directement un flush explicite.
6 : em.flush();


Cela fonctionne dans les deux cas (l’INSERT est envoyé avant la ligne 7 et aucune exception ne se produit).
QUESTION : La méthode « refresh » ne devrait-elle pas forcer l’envoi de l’INSERT par Hibernate, tout comme le fait un SELECT ou un flush ? (autrement dit, n’avons-nous pas ici un bug ?)

Merci pour vos avis.

Pierre


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.