zoukankan      html  css  js  c++  java
  • Spring AOP Interceptor transaction is not working

    Problem

    The Spring AOP transaction is not working in following interceptors?

     <bean id="testAutoProxyCreator"
        class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
    	<property name="interceptorNames">
    		<list>
    			<idref bean="urlInterceptorInsert" />
    			<idref bean="urlInterceptorCommit" />
    			<idref bean="urlInterceptorRelease" />
    			<idref bean="matchGenericTxInterceptor" />
    		</list>
    	</property>
    	<property name="beanNames">
    		<list>
    			<idref local="urlBo" />
    		</list>
    	</property>
    </bean>
    

    The “matchGenericTxInterceptor” transaction interceptor, suppose to intercept urlInterceptorInsert, urlInterceptorCommit,urlInterceptorRelease, but it’s not work as expected?

    Solution

    The 3 interceptors are executed before transaction manager interceptor (matchGenericTxInterceptor).

    To fix it, you have to change the sequence of the interceptor xml file like following (put matchGenericTxInterceptor on top).

     <bean id="testAutoProxyCreator"
            class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
    	<property name="interceptorNames">
    		<list>
                            <idref bean="matchGenericTxInterceptor" />
    			<idref bean="urlInterceptorInsert" />
    			<idref bean="urlInterceptorCommit" />
    			<idref bean="urlInterceptorRelease" />
    		</list>
    	</property>
    	<property name="beanNames">
    		<list>
    			<idref local="urlBo" />
    		</list>
    	</property>
    </bean>
    

    Note
    The sequence of Spring AOP interceptors do affect the functionality.

  • 相关阅读:
    关于API微服务网关
    适用于企业的API管理平台
    简单的api测试
    Json,2020年api数据格式的Top 1
    API文档之团队协作
    如何进行API测试以提高程序质量
    API接口也要监控?
    春招实习_腾讯 wxg 一面 3.27 15:00
    春招实习_腾讯一面 & 二面_3.13
    春招实习_阿里一面
  • 原文地址:https://www.cnblogs.com/ghgyj/p/4751819.html
Copyright © 2011-2022 走看看