List of usage examples for org.aspectj.weaver.tools PointcutParser getPointcutParserSupportingSpecifiedPrimitivesAndUsingSpecifiedClassLoaderForResolution
public static PointcutParser getPointcutParserSupportingSpecifiedPrimitivesAndUsingSpecifiedClassLoaderForResolution( Set<PointcutPrimitive> supportedPointcutKinds, ClassLoader classLoader)
From source file:org.springframework.aop.aspectj.AspectJExpressionPointcut.java
License:Apache License
/** * Initialize the underlying AspectJ pointcut parser. *//* ww w .j a v a 2 s .c o m*/ private PointcutParser initializePointcutParser(ClassLoader cl) { PointcutParser parser = PointcutParser .getPointcutParserSupportingSpecifiedPrimitivesAndUsingSpecifiedClassLoaderForResolution( SUPPORTED_PRIMITIVES, cl); parser.registerPointcutDesignatorHandler(new BeanNamePointcutDesignatorHandler()); return parser; }