<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>
matchgenerictxinterceptor”事务拦截器,假设来拦截器 urlinterceptorinsert,urlinterceptorcommit,urlinterceptorrelease, 但不能如预期一样工作?
<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>