Uses of Class
org.springframework.aop.support.StaticMethodMatcher
Packages that use StaticMethodMatcher Package Description org.springframework.aop.support Convenience classes for using Spring's AOP API.org.springframework.aop.support.annotation Annotation support for AOP pointcuts.org.springframework.cache.jcache.interceptor AOP-based solution for declarative caching demarcation using JSR-107 annotations.Uses of StaticMethodMatcher in org.springframework.aop.support
Subclasses of StaticMethodMatcher in org.springframework.aop.support Modifier and Type Class Description classAbstractRegexpMethodPointcutAbstract base regular expression pointcut bean.classJdkRegexpMethodPointcutRegular expression pointcut based on thejava.util.regexpackage.classNameMatchMethodPointcutPointcut bean for simple method name matches, as an alternative to regexp patterns.classStaticMethodMatcherPointcutConvenient superclass when we want to force subclasses to implement theMethodMatcherinterface but subclasses will want to be pointcuts.classStaticMethodMatcherPointcutAdvisorConvenient base class for Advisors that are also static pointcuts.Uses of StaticMethodMatcher in org.springframework.aop.support.annotation
Subclasses of StaticMethodMatcher in org.springframework.aop.support.annotation Modifier and Type Class Description classAnnotationMethodMatcherSimple MethodMatcher that looks for a specific Java 5 annotation being present on a method (checking both the method on the invoked interface, if any, and the corresponding method on the target class).Uses of StaticMethodMatcher in org.springframework.cache.jcache.interceptor
Subclasses of StaticMethodMatcher in org.springframework.cache.jcache.interceptor Modifier and Type Class Description classJCacheOperationSourcePointcutA Pointcut that matches if the underlyingJCacheOperationSourcehas an operation for a given method.