Class ReflectiveAspectJAdvisorFactory
java.lang.Object
org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactory
org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory
- All Implemented Interfaces:
- Serializable,- AspectJAdvisorFactory
public class ReflectiveAspectJAdvisorFactory
extends AbstractAspectJAdvisorFactory
implements Serializable
Factory that can create Spring AOP Advisors given AspectJ classes from
 classes honoring AspectJ's annotation syntax, using reflection to invoke the
 corresponding advice methods.
- Since:
- 2.0
- Author:
- Rod Johnson, Adrian Colyer, Juergen Hoeller, Ramnivas Laddad, Phillip Webb, Sam Brannen
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionprotected static classSynthetic advisor that instantiates the aspect.Nested classes/interfaces inherited from class org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactoryAbstractAspectJAdvisorFactory.AspectJAnnotation, AbstractAspectJAdvisorFactory.AspectJAnnotationType
- 
Field SummaryFields inherited from class org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactorylogger, parameterNameDiscoverer
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a newReflectiveAspectJAdvisorFactory.ReflectiveAspectJAdvisorFactory(BeanFactory beanFactory) Create a newReflectiveAspectJAdvisorFactory, propagating the givenBeanFactoryto the createdAspectJExpressionPointcutinstances, for bean pointcut handling as well as consistentClassLoaderresolution.
- 
Method SummaryModifier and TypeMethodDescriptiongetAdvice(Method candidateAdviceMethod, AspectJExpressionPointcut expressionPointcut, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName) Build a Spring AOP Advice for the given AspectJ advice method.getAdvisor(Method candidateAdviceMethod, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrderInAspect, String aspectName) Build a Spring AOP Advisor for the given AspectJ advice method.getAdvisors(MetadataAwareAspectInstanceFactory aspectInstanceFactory) Build Spring AOP Advisors for all annotated At-AspectJ methods on the specified aspect instance.Methods inherited from class org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactoryfindAspectJAnnotationOnMethod, isAspect, validate
- 
Constructor Details- 
ReflectiveAspectJAdvisorFactorypublic ReflectiveAspectJAdvisorFactory()Create a newReflectiveAspectJAdvisorFactory.
- 
ReflectiveAspectJAdvisorFactoryCreate a newReflectiveAspectJAdvisorFactory, propagating the givenBeanFactoryto the createdAspectJExpressionPointcutinstances, for bean pointcut handling as well as consistentClassLoaderresolution.- Parameters:
- beanFactory- the BeanFactory to propagate (may be- null}
- Since:
- 4.3.6
- See Also:
 
 
- 
- 
Method Details- 
getAdvisorsDescription copied from interface:AspectJAdvisorFactoryBuild Spring AOP Advisors for all annotated At-AspectJ methods on the specified aspect instance.- Specified by:
- getAdvisorsin interface- AspectJAdvisorFactory
- Parameters:
- aspectInstanceFactory- the aspect instance factory (not the aspect instance itself in order to avoid eager instantiation)
- Returns:
- a list of advisors for this class
 
- 
getAdvisor@Nullable public Advisor getAdvisor(Method candidateAdviceMethod, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrderInAspect, String aspectName) Description copied from interface:AspectJAdvisorFactoryBuild a Spring AOP Advisor for the given AspectJ advice method.- Specified by:
- getAdvisorin interface- AspectJAdvisorFactory
- Parameters:
- candidateAdviceMethod- the candidate advice method
- aspectInstanceFactory- the aspect instance factory
- declarationOrderInAspect- the declaration order within the aspect
- aspectName- the name of the aspect
- Returns:
- nullif the method is not an AspectJ advice method or if it is a pointcut that will be used by other advice but will not create a Spring advice in its own right
 
- 
getAdvice@Nullable public Advice getAdvice(Method candidateAdviceMethod, AspectJExpressionPointcut expressionPointcut, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName) Description copied from interface:AspectJAdvisorFactoryBuild a Spring AOP Advice for the given AspectJ advice method.- Specified by:
- getAdvicein interface- AspectJAdvisorFactory
- Parameters:
- candidateAdviceMethod- the candidate advice method
- expressionPointcut- the AspectJ expression pointcut
- aspectInstanceFactory- the aspect instance factory
- declarationOrder- the declaration order within the aspect
- aspectName- the name of the aspect
- Returns:
- nullif the method is not an AspectJ advice method or if it is a pointcut that will be used by other advice but will not create a Spring advice in its own right
- See Also:
 
 
-