Browse Source

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

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2440 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Luke Taylor 16 years ago
parent
commit
88e59feb45
  1. 3
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/HandlerInterceptor.java

3
org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/HandlerInterceptor.java

@ -107,6 +107,9 @@ public interface HandlerInterceptor { @@ -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