Uses of Interface
org.springframework.aop.Pointcut
Packages that use Pointcut
Package
Description
Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.
AspectJ integration package.
Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.
Convenience classes for using Spring's AOP API.
Annotation support for AOP pointcuts.
AOP-based solution for declarative caching demarcation.
AOP-based solution for declarative caching demarcation using JSR-107 annotations.
Annotation support for DAOs.
Annotation support for asynchronous method execution.
AOP-based solution for declarative transaction demarcation.
-
Uses of Pointcut in org.springframework.aop
Fields in org.springframework.aop declared as PointcutModifier and TypeFieldDescriptionstatic final Pointcut
Pointcut.TRUE
Canonical Pointcut instance that always matches.Methods in org.springframework.aop that return PointcutModifier and TypeMethodDescriptionPointcutAdvisor.getPointcut()
Get the Pointcut that drives this advisor. -
Uses of Pointcut in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement PointcutModifier and TypeClassDescriptionclass
SpringPointcut
implementation that uses the AspectJ weaver to evaluate a pointcut expression.Methods in org.springframework.aop.aspectj that return PointcutModifier and TypeMethodDescriptionfinal Pointcut
AbstractAspectJAdvice.buildSafePointcut()
Build a 'safe' pointcut that excludes the AspectJ advice method itself.AspectJExpressionPointcutAdvisor.getPointcut()
AspectJPointcutAdvisor.getPointcut()
-
Uses of Pointcut in org.springframework.aop.aspectj.annotation
Methods in org.springframework.aop.aspectj.annotation that return PointcutModifier and TypeMethodDescriptionAspectMetadata.getPerClausePointcut()
Return a Spring pointcut expression for a singleton aspect. -
Uses of Pointcut in org.springframework.aop.support
Subinterfaces of Pointcut in org.springframework.aop.supportModifier and TypeInterfaceDescriptioninterface
Interface to be implemented by pointcuts that use String expressions.Classes in org.springframework.aop.support that implement PointcutModifier and TypeClassDescriptionclass
Abstract superclass for expression pointcuts, offering location and expression properties.class
Abstract base regular expression pointcut bean.class
Convenient class for building up pointcuts.class
Pointcut and method matcher for use as a simple cflow-style pointcut.class
Convenient superclass when we want to force subclasses to implement MethodMatcher interface, but subclasses will want to be pointcuts.class
Regular expression pointcut based on thejava.util.regex
package.class
Pointcut bean for simple method name matches, as an alternative to regular expression patterns.class
Convenient superclass when we want to force subclasses to implement theMethodMatcher
interface but subclasses will want to be pointcuts.class
Convenient base class for Advisors that are also static pointcuts.Fields in org.springframework.aop.support declared as PointcutModifier and TypeFieldDescriptionstatic final Pointcut
Pointcuts.GETTERS
Pointcut matching all bean property getters, in any class.static final Pointcut
Pointcuts.SETTERS
Pointcut matching all bean property setters, in any class.Methods in org.springframework.aop.support that return PointcutModifier and TypeMethodDescriptionDefaultBeanFactoryPointcutAdvisor.getPointcut()
DefaultPointcutAdvisor.getPointcut()
NameMatchMethodPointcutAdvisor.getPointcut()
RegexpMethodPointcutAdvisor.getPointcut()
Initialize the singleton Pointcut held within this Advisor.StaticMethodMatcherPointcutAdvisor.getPointcut()
static Pointcut
Pointcuts.intersection
(Pointcut pc1, Pointcut pc2) Match all methods that both the given pointcuts match.static Pointcut
Match all methods that either (or both) of the given pointcuts matches.Methods in org.springframework.aop.support with parameters of type PointcutModifier and TypeMethodDescriptionstatic boolean
Can the given pointcut apply at all on the given class?static boolean
Can the given pointcut apply at all on the given class?ComposablePointcut.intersection
(Pointcut other) Apply an intersection with the given Pointcut.static Pointcut
Pointcuts.intersection
(Pointcut pc1, Pointcut pc2) Match all methods that both the given pointcuts match.static boolean
Perform the least expensive check for a pointcut match.void
DefaultBeanFactoryPointcutAdvisor.setPointcut
(Pointcut pointcut) Specify the pointcut targeting the advice.void
DefaultPointcutAdvisor.setPointcut
(Pointcut pointcut) Specify the pointcut targeting the advice.Apply a union with the given Pointcut.static Pointcut
Match all methods that either (or both) of the given pointcuts matches.Constructors in org.springframework.aop.support with parameters of type PointcutModifierConstructorDescriptionComposablePointcut
(Pointcut pointcut) Create a ComposablePointcut based on the given Pointcut.DefaultPointcutAdvisor
(Pointcut pointcut, Advice advice) Create a DefaultPointcutAdvisor, specifying Pointcut and Advice. -
Uses of Pointcut in org.springframework.aop.support.annotation
Classes in org.springframework.aop.support.annotation that implement PointcutModifier and TypeClassDescriptionclass
-
Uses of Pointcut in org.springframework.cache.interceptor
Methods in org.springframework.cache.interceptor that return PointcutMethods in org.springframework.cache.interceptor with parameters of type PointcutModifier and TypeMethodDescriptionvoid
CacheProxyFactoryBean.setPointcut
(Pointcut pointcut) Set a pointcut, i.e. -
Uses of Pointcut in org.springframework.cache.jcache.interceptor
Classes in org.springframework.cache.jcache.interceptor that implement PointcutModifier and TypeClassDescriptionclass
Deprecated, for removal: This API element is subject to removal in a future version.since 6.0.10, as it is not used by the framework anymoreMethods in org.springframework.cache.jcache.interceptor that return Pointcut -
Uses of Pointcut in org.springframework.dao.annotation
Methods in org.springframework.dao.annotation that return Pointcut -
Uses of Pointcut in org.springframework.scheduling.annotation
Methods in org.springframework.scheduling.annotation that return PointcutModifier and TypeMethodDescriptionprotected Pointcut
AsyncAnnotationAdvisor.buildPointcut
(Set<Class<? extends Annotation>> asyncAnnotationTypes) Calculate a pointcut for the given async annotation types, if any.AsyncAnnotationAdvisor.getPointcut()
-
Uses of Pointcut in org.springframework.transaction.interceptor
Methods in org.springframework.transaction.interceptor that return PointcutModifier and TypeMethodDescriptionBeanFactoryTransactionAttributeSourceAdvisor.getPointcut()
TransactionAttributeSourceAdvisor.getPointcut()
Methods in org.springframework.transaction.interceptor with parameters of type PointcutModifier and TypeMethodDescriptionvoid
TransactionProxyFactoryBean.setPointcut
(Pointcut pointcut) Set a pointcut, i.e a bean that can cause conditional invocation of the TransactionInterceptor depending on method and attributes passed.