Ver Mensaje Individual
  #4 (permalink)  
Antiguo 22/11/2010, 17:59
tutorialjava
 
Fecha de Ingreso: octubre-2010
Mensajes: 21
Antigüedad: 14 años
Puntos: 0
Respuesta: Problema conectando struts con hibernate

Por favor, postea el log completo del error para poder ayudarte, estoy viendo que estas utilizando el LogFactory,

Caso contrario, en el siguiente codigo, agrega lo siguiente, para que te lance el error a tu consola,

Avisame.

try {
URL url = HibernateUtil.class.getResource(path);
config = new Configuration().configure(url);
factory = config.buildSessionFactory();
servlet.getServletContext().setAttribute(KEY_NAME, factory);
} catch (MappingException e) {

log.error("mapping error", e);
e.printStackTrace();
throw new ServletException();
} catch (HibernateException e) {
log.error("hibernate error", e);
e.printStackTrace();
throw new ServletException();
}