afterTransactionCompletion() 从未被调用

发布于 2024-11-05 08:41:30 字数 1252 浏览 1 评论 0原文

您好,当我使用 hibernate 运行我的应用程序以插入数据库 sql 5.0 时,我收到此异常:

线程“main”中的异常 java.lang.NullPointerException at org.domain.projet.config.Facade.createConnexion(Facade.java:227) at org.domain.projet.config.Test.main(Test.java: 49) 2011 年 5 月 5 日 10:41:27 net.sf.hibernate.impl.SessionImpl 最终确定

这是方法:

public Connexion createConnexion( int id_utilisateur) throws HibernateException
{
    Connexion con =new Connexion();
    con.setDateDeb(new Date());
    con.setDateFin(new Date());
    con.setIdCnx(id_utilisateur);


        Session session = sessFactory.openSession();
         net.sf.hibernate.Transaction tx=null;
       try {
        tx = session.beginTransaction();

    Utilisateur user=(Utilisateur) session.load(Utilisateur.class,id_utilisateur);
    con.setUtil(user);
    //((List<Connexion>)user.getConnexions()).add((Connexion) con);
    user.getConnexions().add(con);
    session.saveOrUpdate(user);
    session.saveOrUpdate(con);

    //session.flush();
      tx.commit();
        }
      catch (HibernateException he) {

             if (tx!=null) tx.rollback();
           throw he;

         }
        finally {
         session.close();
         }
return con;


}

hi when i run my application using hibernate to insert in database sql 5.0 i get this exception:

Exception in thread "main" java.lang.NullPointerException at org.domain.projet.config.Facade.createConnexion(Facade.java:227) at org.domain.projet.config.Test.main(Test.java:49) 5 mai 2011 10:41:27 net.sf.hibernate.impl.SessionImpl finalize

this is the method:

public Connexion createConnexion( int id_utilisateur) throws HibernateException
{
    Connexion con =new Connexion();
    con.setDateDeb(new Date());
    con.setDateFin(new Date());
    con.setIdCnx(id_utilisateur);


        Session session = sessFactory.openSession();
         net.sf.hibernate.Transaction tx=null;
       try {
        tx = session.beginTransaction();

    Utilisateur user=(Utilisateur) session.load(Utilisateur.class,id_utilisateur);
    con.setUtil(user);
    //((List<Connexion>)user.getConnexions()).add((Connexion) con);
    user.getConnexions().add(con);
    session.saveOrUpdate(user);
    session.saveOrUpdate(con);

    //session.flush();
      tx.commit();
        }
      catch (HibernateException he) {

             if (tx!=null) tx.rollback();
           throw he;

         }
        finally {
         session.close();
         }
return con;


}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲鸠 2024-11-12 08:41:30

堆栈跟踪准确地告诉您错误所在的位置:第 227 行、Facade 类和 createConnexion 方法中。在这一行,您可能调用空引用上的方法。如果没有看到代码,就不可能更精确。

顺便说一句:您问题的标题和正文之间有什么关系?

The stack trace tells you exactly where the error lies : at line 227, in the class Facade, and in the method createConnexion. At this line, you probably call a method on a null reference. Without seeing the code, it's impossible to be more precise.

BTW : what's the relation between the title and the body of your question?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文