本文整理汇总了Java中org.springframework.aop.AfterReturningAdvice类的典型用法代码示例。如果您正苦于以下问题:Java AfterReturningAdvice类的具体用法?Java AfterReturningAdvice怎么用?Java AfterReturningAdvice使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AfterReturningAdvice类属于org.springframework.aop包,在下文中一共展示了AfterReturningAdvice类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createSpringAOPAfterAdvice
import org.springframework.aop.AfterReturningAdvice; //导入依赖的package包/类
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;
}
示例2: supportsAdvice
import org.springframework.aop.AfterReturningAdvice; //导入依赖的package包/类
@Override
public boolean supportsAdvice(Advice advice) {
return (advice instanceof AfterReturningAdvice);
}
示例3: getInterceptor
import org.springframework.aop.AfterReturningAdvice; //导入依赖的package包/类
@Override
public MethodInterceptor getInterceptor(Advisor advisor) {
AfterReturningAdvice advice = (AfterReturningAdvice) advisor.getAdvice();
return new AfterReturningAdviceInterceptor(advice);
}
示例4: AfterReturningAdviceInterceptor
import org.springframework.aop.AfterReturningAdvice; //导入依赖的package包/类
/**
* Create a new AfterReturningAdviceInterceptor for the given advice.
* @param advice the AfterReturningAdvice to wrap
*/
public AfterReturningAdviceInterceptor(AfterReturningAdvice advice) {
Assert.notNull(advice, "Advice must not be null");
this.advice = advice;
}
示例5: supportsAdvice
import org.springframework.aop.AfterReturningAdvice; //导入依赖的package包/类
public boolean supportsAdvice(Advice advice) {
return (advice instanceof AfterReturningAdvice);
}
示例6: getInterceptor
import org.springframework.aop.AfterReturningAdvice; //导入依赖的package包/类
public MethodInterceptor getInterceptor(Advisor advisor) {
AfterReturningAdvice advice = (AfterReturningAdvice) advisor.getAdvice();
return new AfterReturningAdviceInterceptor(advice);
}