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

master
Luke Taylor 15 years ago
parent 35472300ae
commit 222ae33666
  1. 3
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/HandlerInterceptor.java

@ -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

Loading…
Cancel
Save