我正在尝试编写一个用于审计目的的Hibernate拦截器,但是它将使用线程本地上下文会话(而不是每次调用openSession()并将其传递给拦截器对象)。
非常感谢有关如何执行此操作的任何指南/示例代码。 (我的主要问题是找出一种方法,在第一次打开时将拦截器对象提供给上下文会话。)
答案 0 :(得分:2)
为什么不使用hibernate审计解决方案? http://docs.jboss.org/envers/docs/index.html
答案 1 :(得分:2)
如果你只使用Hibernate,你可以用两种方法设置Interceptor for session。
//interceptor for global, set interceptor when create sessionFactory with Configure
sessionFactory =
new AnnotationConfiguration().configure()
.setInterceptor(new AuditTrailInterceptor())
.buildSessionFactory()
//interceptor for per Session
Session session = sessionFactory.openSession(new XxxInterceptor())
如果您使用Spring创建SessionFactory
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="entityInterceptor">
<bean class="your.XxxInterceptor"/>
</property>
<!-- other configuration -->
</bean>
我发现了一篇可以帮助你的博客文章。 http://www.sleberknight.com/blog/sleberkn/entry/using_a_hibernate_interceptor_to