SPR-6087: Updated Javadoc for HandlerInterceptor to indicate invocation order of afterCompletion() methods

This commit is contained in:
Luke Taylor 2009-11-16 13:24:00 +00:00
parent 35472300ae
commit 222ae33666
1 changed files with 3 additions and 0 deletions

View File

@ -107,6 +107,9 @@ public interface HandlerInterceptor {
* for proper resource cleanup.
* <p>Note: Will only be called if this interceptor's <code>preHandle</code>
* method has successfully completed and returned <code>true</code>!
* <p>As with the {@code postHandle} method, the method will be invoked on each
* interceptor in the chain in reverse order, so the first interceptor will be
* the last to be invoked.
* @param request current HTTP request
* @param response current HTTP response
* @param handler chosen handler to execute, for type and/or instance examination