作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
public class Auditing extends EmptyInterceptor {
@Resource
private ApplicationService applicationService;
public boolean onFlushDirty(Object entity, Serializable id,Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) {
if(applicationService == null){
System.out.println("applicationService is null");
}
return(true);
}
}
我观察到,对于每个 hibernate 操作,都会创建一个新的审核对象,并且在 onFlushDirty() 中它始终打印“applicationService is null”
谁能告诉我如何使 ApplicationService 在 EmptyInterceptor 中可用?
最佳答案
我通过使用具有静态 applicationService 属性的类找到了解决此问题的方法。现在,通过为其创建静态引用,我可以使用 applicationService。
目前可以使用。如果您有任何更好或有效的建议,请发布:)
问候,
关于java - 如何将服务传递给 EmptyInterceptor 类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14577521/
我是一名优秀的程序员,十分优秀!