Uses of Interface
org.springframework.aop.aspectj.AspectInstanceFactory
Packages that use AspectInstanceFactory Package Description org.springframework.aop.aspectj AspectJ integration package.org.springframework.aop.aspectj.annotation Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.org.springframework.aop.config Support package for declarative AOP configuration, with XML schema being the primary configuration format.Uses of AspectInstanceFactory in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement AspectInstanceFactory Modifier and Type Class Description classSimpleAspectInstanceFactoryImplementation ofAspectInstanceFactorythat creates a new instance of the specified aspect class for everySimpleAspectInstanceFactory.getAspectInstance()call.classSingletonAspectInstanceFactoryImplementation ofAspectInstanceFactorythat is backed by a specified singleton object, returning the same instance for everySingletonAspectInstanceFactory.getAspectInstance()call.Methods in org.springframework.aop.aspectj that return AspectInstanceFactory Modifier and Type Method Description AspectInstanceFactoryAbstractAspectJAdvice. getAspectInstanceFactory()Return the factory for aspect instances.Constructors in org.springframework.aop.aspectj with parameters of type AspectInstanceFactory Constructor Description AbstractAspectJAdvice(Method aspectJAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aspectInstanceFactory)Create a new AbstractAspectJAdvice for the given advice method.AspectJAfterAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)AspectJAfterReturningAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)AspectJAfterThrowingAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)AspectJAroundAdvice(Method aspectJAroundAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)AspectJMethodBeforeAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)Uses of AspectInstanceFactory in org.springframework.aop.aspectj.annotation
Subinterfaces of AspectInstanceFactory in org.springframework.aop.aspectj.annotation Modifier and Type Interface Description interfaceMetadataAwareAspectInstanceFactorySubinterface ofAspectInstanceFactorythat returnsAspectMetadataassociated with AspectJ-annotated classes.Classes in org.springframework.aop.aspectj.annotation that implement AspectInstanceFactory Modifier and Type Class Description classBeanFactoryAspectInstanceFactoryAspectInstanceFactoryimplementation backed by a SpringBeanFactory.classLazySingletonAspectInstanceFactoryDecoratorDecorator to cause aMetadataAwareAspectInstanceFactoryto instantiate only once.classPrototypeAspectInstanceFactoryAspectInstanceFactorybacked by aBeanFactory-provided prototype, enforcing prototype semantics.classSimpleMetadataAwareAspectInstanceFactoryImplementation ofMetadataAwareAspectInstanceFactorythat creates a new instance of the specified aspect class for everySimpleAspectInstanceFactory.getAspectInstance()call.classSingletonMetadataAwareAspectInstanceFactoryImplementation ofMetadataAwareAspectInstanceFactorythat is backed by a specified singleton object, returning the same instance for everySingletonAspectInstanceFactory.getAspectInstance()call.Uses of AspectInstanceFactory in org.springframework.aop.config
Classes in org.springframework.aop.config that implement AspectInstanceFactory Modifier and Type Class Description classSimpleBeanFactoryAwareAspectInstanceFactoryImplementation ofAspectInstanceFactorythat locates the aspect from theBeanFactoryusing a configured bean name.