1

我正在使用以下方法来解决 hibernate 中的唯一延迟初始化问题。请告诉我它是否会起作用。由于某些原因,我必须在我的持久层强制执行我的事务。

public class CourseDAO {

       Session session = null;
    public CourseDAO()
{

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

}

    public Course findByID(int cid){


        Course crc = null;
        Transaction tx = null;
        try {
            tx = session.beginTransaction();
            Query q = session.createQuery("from Course  as course where course.cid = "+cid+" ");
            crc = (Course) q.uniqueResult();
          //note that i am not commiting my transcation here.Because If i do that i will not be able to
          //do lazy fetch


        } 
        catch (HibernateException e)
        {
            e.printStackTrace();
             tx.rollback();
            throw new DataAccessLayerException(e);
        }

        finally
        {


        }
        return crc;
}


}

在过滤器中我使用以下代码

 session =  HibernateUtil.getSessionFactory().getCurrentSession();
     if(session.isOpen())
          HibernateUtil.getSessionFactory().getCurrentSession().getTransaction().commit();

这种方法对吗??会不会有什么问题

4

2 回答 2

0

你能解释一下为什么你需要在你的存储库中有你的交易吗?问题是它们会变得如此细粒度,所以你不会从会话缓存中获得任何好处

然后你在那里打开交易,但在你的过滤器中关闭它。如果您访问服务中的多个存储库会发生什么?也许我不明白您的意思,但我认为您需要重新考虑迫使您在存储库中管理交易的原因

于 2009-07-28T15:32:07.503 回答
0

你什么时候创建你的 CourseDAO?如果它是一个单例 bean 或其他比页面视图寿命更长的东西,它需要保留一个 SessionFactory 并在需要时生成一个新的 Session,而不是保留一个 Session。

于 2009-11-10T14:06:44.507 回答