java-Spring AOP-未调用切入点/拦截器

前端之家收集整理的这篇文章主要介绍了java-Spring AOP-未调用切入点/拦截器 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我定义了以下拦截器:

@Aspect
public class OpenSessionInRequestInterceptor {

    private Log log = LogFactory.getLog(getClass());

    @Autowired
    private SessionFactory sessionFactory;

    public OpenSessionInRequestInterceptor() {

    }

    @Around("@annotation(com.sc2.master.aop.hibernate.OpenSession)")
    public Object processAround(ProceedingJoinPoint pjp) throws Throwable {
        log.info("opening Hibernate Session in method "+pjp.getSignature());
        Session session = SessionFactoryUtils.getSession(sessionFactory,true);
        TransactionSynchronizationManager.bindResource(sessionFactory,new SessionHolder(session));

        Object ret = pjp.proceed();

        session.close();
        TransactionSynchronizationManager.unbindResource(sessionFactory);

        log.info("Closing Hibernate Session in method "+pjp.getSignature());

        return ret;
    }

}

当我在弹簧测试中执行以下代码

    @OpenSession
    public void call() {
        BusinessCustomer customer = (BusinessCustomer) this.customerDao.loadAll().get(0);
        System.out.println(customer.getContacts().size());
    }

方面方法调用.要开始测试,我的测试用例类如下所示:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"file:WebContent/WEB-INF/applicationContext.xml"})
@Transactional

但是,当我有一个用@OpenSession注释的方法并将该应用程序部署到我的Tomcat服务器上时,不会调用拦截方法.

应用程序上下文定义如下所示:

<aop:aspectj-autoproxy proxy-target-class="true">
</aop:aspectj-autoproxy>

<bean id="openSessionInRequestInterceptor" class="OpenSessionInRequestInterceptor"></bean>

我绝对无法弄清楚,为什么将AOP部署在tomcat上时不起作用.我希望你有一些想法.

解决方案我找到了解决方案.我将aop配置放置在applicationContext.xml中,但这将不起作用.我将配置放在application-servlet.xml中,现在一切正常.有人知道为什么吗?

最佳答案
我承认我不必使用标记批注来使其工作,但是我需要将该批注作为参数,因此可行:

@Around("@annotation(foo)")
public Object invoke(ProceedingJoinPoint invocation,Foo foo) throws Throwable 

但是..请注意,如果尚未启动@Transactional,它也会启动一个会话,因此也许您并不是真的需要它.

更新:如果您的bean是在子上下文中定义的,则父上下文的aop配置不会影响它们.父上下文看不到子上下文,而您的x-servlet.xml是子上下文.

原文链接:https://www.f2er.com/spring/531702.html

猜你在找的Spring相关文章