Example usage for org.springframework.aop ClassFilter interface-usage

List of usage examples for org.springframework.aop ClassFilter interface-usage

Introduction

In this page you can find the example usage for org.springframework.aop ClassFilter interface-usage.

Usage

From source file org.springframework.aop.aspectj.AspectJExpressionPointcut.java

/**
 * Spring {@link org.springframework.aop.Pointcut} implementation
 * that uses the AspectJ weaver to evaluate a pointcut expression.
 *
 * <p>The pointcut expression value is an AspectJ expression. This can
 * reference other pointcuts and use composition and other operations.

From source file org.springframework.aop.support.AbstractRegexpMethodPointcut.java

/**
 * Abstract base regular expression pointcut bean. JavaBean properties are:
 * <ul>
 * <li>pattern: regular expression for the fully-qualified method names to match.
 * The exact regexp syntax will depend on the subclass (e.g. Perl5 regular expressions)
 * <li>patterns: alternative property taking a String array of patterns. The result will

From source file org.springframework.aop.support.RegexpMethodPointcut.java

/**
 * Perl5 regular expression pointcut bean. JavaBean properties are:
 * <li>pattern: Perl5 regular expression for the fully-qualified method names to match
 * <li>patterns: alternative property taking a String array of patterns. The result will
 * be the union of these patterns. 
 * <li>interceptor: AOP Alliance interceptor to invoke if the pointcut matches