当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
AfterReturningAdvice (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.aop
Interface AfterReturningAdvice
- All Superinterfaces:
- Advice, AfterAdvice
- All Known Implementing Classes:
- AspectJAfterReturningAdvice
public interface AfterReturningAdvice
- extends AfterAdvice
After returning advice is invoked only on normal method return, not if an
exception is thrown. Such advice can see the return value, but cannot change it.
- Author:
- Rod Johnson
- See Also:
MethodBeforeAdvice
,
ThrowsAdvice
afterReturning
void afterReturning(Object returnValue,
Method method,
Object[] args,
Object target)
throws Throwable
- Callback after a given method successfully returned.
- Parameters:
returnValue
- the value returned by the method, if anymethod
- method being invokedargs
- arguments to the methodtarget
- target of the method invocation. May be null
.
- Throws:
Throwable
- if this object wishes to abort the call.
Any exception thrown will be returned to the caller if it's
allowed by the method signature. Otherwise the exception
will be wrapped as a runtime exception.
Copyright © 2002-2007 The Spring Framework.