当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
AspectJAwareAdvisorAutoProxyCreator (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.aop.aspectj.autoproxy
Class AspectJAwareAdvisorAutoProxyCreator
java.lang.Object
org.springframework.aop.framework.ProxyConfig
org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator
org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator
org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator
- All Implemented Interfaces:
- Serializable, AopInfrastructureBean, BeanClassLoaderAware, BeanFactoryAware, BeanPostProcessor, InstantiationAwareBeanPostProcessor, Ordered
- Direct Known Subclasses:
- AnnotationAwareAspectJAutoProxyCreator
public class AspectJAwareAdvisorAutoProxyCreator
- extends AbstractAdvisorAutoProxyCreator
AbstractAdvisorAutoProxyCreator
subclass that exposes AspectJ's invocation context and understands AspectJ's rules
for advice precedence when multiple pieces of advice come from the same aspect.
- Since:
- 2.0
- Author:
- Adrian Colyer, Juergen Hoeller
- See Also:
- Serialized Form
Methods inherited from class org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator |
buildAdvisors, createProxy, customizeProxyFactory, getBeanFactory, getCacheKey, getCustomTargetSource, getOrder, isFrozen, isInfrastructureClass, isInfrastructureClass, postProcessAfterInitialization, postProcessAfterInstantiation, postProcessBeforeInitialization, postProcessBeforeInstantiation, postProcessPropertyValues, setAdvisorAdapterRegistry, setApplyCommonInterceptorsFirst, setBeanClassLoader, setCustomTargetSourceCreators, setFrozen, setInterceptorNames, setOrder, shouldProxyTargetClass, shouldSkip |
AspectJAwareAdvisorAutoProxyCreator
public AspectJAwareAdvisorAutoProxyCreator()
sortAdvisors
protected List sortAdvisors(List advisors)
- Sort the rest by AspectJ precedence. If two pieces of advice have
come from the same aspect they will have the same order.
Advice from the same aspect is then further ordered according to the
following rules:
- if either of the pair is after advice, then the advice declared
last gets highest precedence (runs last)
- otherwise the advice declared first gets highest precedence (runs first)
Important: Advisors are sorted in precedence order, from highest
precedence to lowest. "On the way in" to a join point, the highest precedence
advisor should run first. "On the way out" of a join point, the highest precedence
advisor should run last.
- Overrides:
sortAdvisors
in class AbstractAdvisorAutoProxyCreator
- Parameters:
advisors
- the source List of Advisors
- Returns:
- the sorted List of Advisors
- See Also:
Ordered
,
OrderComparator
extendAdvisors
protected void extendAdvisors(List candidateAdvisors)
- Adds an
ExposeInvocationInterceptor
to the beginning of the advice chain.
These additional advices are needed when using AspectJ expression pointcuts
and when using AspectJ-style advice.
- Overrides:
extendAdvisors
in class AbstractAdvisorAutoProxyCreator
- Parameters:
candidateAdvisors
- Advisors that have already been identified as
applying to a given bean
Copyright © 2002-2007 The Spring Framework.