Java Code Examples for org.springframework.aop.support.DefaultPointcutAdvisor#setOrder()

The following examples show how to use org.springframework.aop.support.DefaultPointcutAdvisor#setOrder() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AspectJPrecedenceComparatorTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
private Advisor createSpringAOPAfterAdvice(int order) {
	AfterReturningAdvice advice = new AfterReturningAdvice() {
		@Override
		public void afterReturning(@Nullable Object returnValue, Method method, Object[] args, @Nullable Object target) throws Throwable {
		}
	};
	DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
	advisor.setOrder(order);
	return advisor;
}
 
Example 2
Source File: AspectJPrecedenceComparatorTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
private Advisor createSpringAOPBeforeAdvice(int order) {
	BeforeAdvice advice = new BeforeAdvice() {
	};
	DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
	advisor.setOrder(order);
	return advisor;
}
 
Example 3
Source File: AspectJPrecedenceComparatorTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
private Advisor createSpringAOPAfterAdvice(int order) {
	AfterReturningAdvice advice = new AfterReturningAdvice() {
		@Override
		public void afterReturning(@Nullable Object returnValue, Method method, Object[] args, @Nullable Object target) throws Throwable {
		}
	};
	DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
	advisor.setOrder(order);
	return advisor;
}
 
Example 4
Source File: AspectJPrecedenceComparatorTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
private Advisor createSpringAOPBeforeAdvice(int order) {
	BeforeAdvice advice = new BeforeAdvice() {
	};
	DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
	advisor.setOrder(order);
	return advisor;
}
 
Example 5
Source File: AspectJPrecedenceComparatorTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
private Advisor createSpringAOPAfterAdvice(int order) {
	AfterReturningAdvice advice = new AfterReturningAdvice() {
		@Override
		public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
		}
	};
	DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
	advisor.setOrder(order);
	return advisor;
}
 
Example 6
Source File: AspectJPrecedenceComparatorTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
private Advisor createSpringAOPBeforeAdvice(int order) {
	BeforeAdvice advice = new BeforeAdvice() {
	};
	DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(this.anyOldPointcut, advice);
	advisor.setOrder(order);
	return advisor;
}
 
Example 7
Source File: CubaMethodValidationPostProcessor.java    From cuba with Apache License 2.0 5 votes vote down vote up
@Override
public void afterPropertiesSet() {
    Pointcut pointcut = new AnnotationMatchingPointcut(Service.class, Validated.class, true);
    DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(pointcut, createMethodValidationAdvice(this.beanValidation));
    advisor.setOrder(2);
    this.advisor = advisor;
}