afterTransactionCompletion() 从未被调用
您好,当我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
堆栈跟踪准确地告诉您错误所在的位置:第 227 行、
Facade
类和createConnexion
方法中。在这一行,您可能调用空引用上的方法。如果没有看到代码,就不可能更精确。顺便说一句:您问题的标题和正文之间有什么关系?
The stack trace tells you exactly where the error lies : at line 227, in the class
Facade
, and in the methodcreateConnexion
. 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?