4

我对 Grails 中的 withSession 和当前的休眠会话感到困惑。

我的问题是:我们在闭包中可以访问的会话对象是否与当前的休眠会话对象相同?

我写了一个服务,它的动作如下:

def strangeBehavior(){

    Link.withSession { session->
        println "link current session " +  session.hashCode()
    }

    Task.withSession { session->
        println "task current session " +  session.hashCode()
    }

    Project.withSession { session->
        println "project current session " +  session.hashCode()
    }

    UserStory.withSession { session->
        println "user story current session " +  session.hashCode()
    }

    def ctx = AH.application.mainContext
        def sessionFactory = ctx.sessionFactory
        def tmp = sessionFactory.currentSession
        println " current session " +  tmp.hashCode()
    }
}

对我来说奇怪的是有 5 种不同的哈希码......如果我打印 5 个会话对象,我会看到相同的 toString() 结果。这让我猜测它们具有相同的内容:

SessionImpl(PersistenceContext[entityKeys=[EntityKey[com.astek.agileFactory.Link#170], EntityKey[com.astek.agileFactory.Project#9]],collectionKeys=[Col……”

4

1 回答 1

5

简要回答您的问题:
我们在关闭时可以访问的会话对象不是当前的休眠会话。

session 对象是当前休眠会话的代理。因此在每种情况下都有不同的哈希码。

看一下withSession 的来源,在HibernateTemplate中清楚地看到setExposeNativeSession设置为false(默认值也是 false),它确保始终返回会话代理而不暴露本机休眠会话。

于 2013-05-27T23:09:39.763 回答