11

我尝试了一些来自hibernate 4.0 拦截器的代码,它给出了使用会话级拦截器的代码:

Session session = sf.openSession( new AuditInterceptor() );

但是,我检查了 hibernate-core 4.0 源代码和仅hibernate 4.0 java-doc,该类SessionFactory没有 method openSession(Interceptor interceptor) ,但hibernate 3.6 java-doc确实有这个方法。

有谁知道方法转移到哪里?如果不推荐使用,为什么该文档仍将其保留在教程文档中?我应该如何在 4.0 中使用会话级拦截器?

4

1 回答 1

27

它现在使用 Builder 模式实现:

Session session = sf.withOptions()
                    .interceptor(new AuditInterceptor())
                    .openSession(); 
于 2012-07-11T08:54:14.597 回答