org.springframework.aop.BeforeAdvice Java Examples

The following examples show how to use org.springframework.aop.BeforeAdvice. 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: AspectJAopUtils.java    From spring-analysis-note with MIT License 5 votes vote down vote up
/**
 * Return {@code true} if the advisor is a form of before advice.
 */
public static boolean isBeforeAdvice(Advisor anAdvisor) {
	AspectJPrecedenceInformation precedenceInfo = getAspectJPrecedenceInformationFor(anAdvisor);
	if (precedenceInfo != null) {
		return precedenceInfo.isBeforeAdvice();
	}
	return (anAdvisor.getAdvice() instanceof BeforeAdvice);
}
 
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: AspectJAopUtils.java    From java-technology-stack with MIT License 5 votes vote down vote up
/**
 * Return {@code true} if the advisor is a form of before advice.
 */
public static boolean isBeforeAdvice(Advisor anAdvisor) {
	AspectJPrecedenceInformation precedenceInfo = getAspectJPrecedenceInformationFor(anAdvisor);
	if (precedenceInfo != null) {
		return precedenceInfo.isBeforeAdvice();
	}
	return (anAdvisor.getAdvice() instanceof BeforeAdvice);
}
 
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: AspectJAopUtils.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Return {@code true} if the advisor is a form of before advice.
 */
public static boolean isBeforeAdvice(Advisor anAdvisor) {
	AspectJPrecedenceInformation precedenceInfo = getAspectJPrecedenceInformationFor(anAdvisor);
	if (precedenceInfo != null) {
		return precedenceInfo.isBeforeAdvice();
	}
	return (anAdvisor.getAdvice() instanceof BeforeAdvice);
}
 
Example #6
Source File: AspectJAopUtils.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
/**
 * Return {@code true} if the advisor is a form of before advice.
 */
public static boolean isBeforeAdvice(Advisor anAdvisor) {
	AspectJPrecedenceInformation precedenceInfo = getAspectJPrecedenceInformationFor(anAdvisor);
	if (precedenceInfo != null) {
		return precedenceInfo.isBeforeAdvice();
	}
	return (anAdvisor.getAdvice() instanceof BeforeAdvice);
}
 
Example #7
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;
}