Package org.springframework.aop.support
Class Pointcuts
java.lang.Object
org.springframework.aop.support.Pointcuts
Pointcut constants for matching getters and setters,
and static methods useful for manipulating and evaluating pointcuts.
These methods are particularly useful for composing pointcuts using the union and intersection methods.
- Author:
- Rod Johnson, Juergen Hoeller
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Pointcut
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.static Pointcut
Match all methods that either (or both) of the given pointcuts matches.
-
Field Details
-
SETTERS
Pointcut matching all bean property setters, in any class. -
GETTERS
Pointcut matching all bean property getters, in any class.
-
-
Constructor Details
-
Pointcuts
public Pointcuts()
-
-
Method Details
-
union
Match all methods that either (or both) of the given pointcuts matches.- Parameters:
pc1
- the first Pointcutpc2
- the second Pointcut- Returns:
- a distinct Pointcut that matches all methods that either of the given Pointcuts matches
-
intersection
Match all methods that both the given pointcuts match.- Parameters:
pc1
- the first Pointcutpc2
- the second Pointcut- Returns:
- a distinct Pointcut that matches all methods that both of the given Pointcuts match
-
matches
public static boolean matches(Pointcut pointcut, Method method, Class<?> targetClass, Object... args) Perform the least expensive check for a pointcut match.- Parameters:
pointcut
- the pointcut to matchmethod
- the candidate methodtargetClass
- the target classargs
- arguments to the method- Returns:
- whether there's a runtime match
-