-->
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: Filtre et ServletResponse
PostPosted: Thu Oct 23, 2008 9:37 am 
Newbie

Joined: Thu Oct 23, 2008 9:13 am
Posts: 1
Bonjour,

Je suis sur un projet struts qui utilise Hibernate, et j'ai un filtre chargé d'ouvrir / fermer la transaction autour de mes actions, dont voici le code :
Code:
sf = HibernateUtil.getSessionFactory();
try {
   log.debug("Starting a database transaction");
   sf.getCurrentSession().beginTransaction();
   // Call the next filter (continue request processing)
   chain.doFilter(request, response);
   // Commit and cleanup
   log.debug("Committing the database transaction");
   sf.getCurrentSession().getTransaction().commit();
} catch (StaleObjectStateException staleEx) {
   log.error("This interceptor does not implement optimistic concurrency control!");
   log.error("Your application will not work until you add compensation actions!");
   throw staleEx;
} catch (Throwable ex) {
   ex.printStackTrace();
   try {
      if (sf.getCurrentSession().getTransaction().isActive()) {
      log.error(ParametresMessages.getString("error.production.commit"));
               sf.getCurrentSession().getTransaction().rollback();
      }
   } catch (Throwable rbEx) {
            log.error(ParametresMessages.getString("error.production.commit"), rbEx);
   }
         throw new ServletException(ex);
}


Mon problème est le suivant : lorsqu'une erreur se produit lors du commit (la ligne : sf.getCurrentSession().getTransaction().commit(); ), comment afficher la pile d'erreur dans ma JSP ?

En général, si une erreur se produit dans mes actions, soit je la catche et j'affiche un message d'erreur personnalisé dans ma jsp, soit non et tomcat s'en charge en me balançant la pile d'exceptions dans ma jsp.

Par contre, ici, j'ai l'impression que la réponse est déjà renvoyée juste avant le commit, et comme Hibernate n'envoie ses requêtes que le plus tard possible (donc pile au moment du commit), la réponse est déjà partie et l'exception ne parvient pas à l'utilisateur (elle s'affiche bien dans la console, par contre).

Merci d'avance


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.