我正在尝试使用HibernateInterceptor作为建议,我正在尝试自动装配它。
代码如下,
@Aspect
public class InterceptorAdvice{
private HibernateInterceptor hibernateInterceptor;
@Autowired
public void setHibernateInterceptor(@Qualifier("hibernateInterceptor") HibernateInterceptor hibernateInterceptor) {
this.hibernateInterceptor = hibernateInterceptor;
}
@Around("execution(* *..*.dao..*.*(..))")
public Object interceptCall(ProceedingJoinPoint joinPoint) throws Exception {
Object obj = null;
try{
.......
}catch(Exception e){
e.printStackTrace();
}
return obj;
}
}
以下是我的XML映射
<bean id="hibernateInterceptor" class="org.springframework.orm.hibernate3.HibernateInterceptor" autowire="byName">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<!--To enable AspectJ AOP-->
<aop:aspectj-autoproxy/>
<!--Your advice-->
<bean class="com.web.aop.InterceptorAdvice"/>
<!--Looks for any annotated Spring bean in com.app.dao package-->
<context:component-scan base-package="com.web.dao"/>
<!--Enables @Autowired annotation-->
<context:annotation-config/>
当我检查hibernateInterceptop时,我得到的只是NULL :( ...不确定为什么它无法自动装配hibernate拦截器
有什么想法吗?谢谢你的时间。
干杯, Ĵ
答案 0 :(得分:0)
你有几个拦截器吗?
如果您在@Qualifier中使用@Autowired,我建议您改用@Resource。它更......标准。
@Resource(name="hibernateInterceptor")
public void setHibernateInterceptor(HibernateInterceptor value) {
hibernateInterceptor = value;
}
我曾经遇到过@Autowired和@Qualifier的问题,但从未使用@Resource(@Resource是JSR250,不是Spring,但是Spring支持它)。
如果你只有一个hibernateInterceptor,你可以使用名称限定符的@Resource。