-->
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: update() ne renvoit pas d'exception ...
PostPosted: Thu Apr 02, 2009 5:37 pm 
Newbie

Joined: Mon Mar 02, 2009 3:57 pm
Posts: 3
Bonjour,

J'ai lu ds la doc hibernate 3 qu'on ne pouvait utiliser la fonction "update" de la classe org.hibernate.Session que si l'objet sur lequel on fait l'update n'etait pas deja ds la session hibernate donc que si l'objet etait detaché. Ds le cas contraire une exception devrait etre jetée...

Mais alors je ne comprend pas pourquoi le code suivant ne lance aucune exception:

Code:
    public void updateDesigner(Designer designer) {

        Designer currentDesigner = designerDAO.findDesignerById(designer.getId());

        currentDesigner.setBiographie(designer.getBiographie());
        currentDesigner.setNom(designer.getNom());
        currentDesigner.setPrenom(designer.getPrenom());
       
        designerDAO.updateDesigner(currentDesigner);
    }





voici l'implementation des methodes de la dao:
Code:
public Designer findDesignerById(Integer id) {

        Session session=HibernateUtil.getSessionFactory().getCurrentSession();

        //la methode get renvoit null si l'objet n'existe pas
        return (Designer)session.get(Designer.class, id);
    }

public void updateDesigner(Designer designer) {

        Session session=HibernateUtil.getSessionFactory().getCurrentSession();
        session.update(designer);
    }



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.