This commit is contained in:
Arjen Poutsma 2009-03-28 21:20:18 +00:00
parent 04b3edca33
commit 5bcdf81656
2 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,8 @@ import org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMeth
/** /**
* Default implementation of the {@link org.springframework.web.servlet.HandlerExceptionResolver * Default implementation of the {@link org.springframework.web.servlet.HandlerExceptionResolver
* HandlerExceptionResolver} interface that resolves standard Spring exceptions. <p>Default implementations typically * HandlerExceptionResolver} interface that resolves standard Spring exceptions. <p>Default implementations typically
* set the response status. * set the response status to a corresponding HTTP status code. <p>This exception resolver is enabled by default in the
* {@link org.springframework.web.servlet.DispatcherServlet}.
* *
* @author Arjen Poutsma * @author Arjen Poutsma
* @see #handleNoSuchRequestHandlingMethod * @see #handleNoSuchRequestHandlingMethod

View File

@ -28,6 +28,7 @@ import org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver;
/** /**
* Implementation of the {@link org.springframework.web.servlet.HandlerExceptionResolver HandlerExceptionResolver} * Implementation of the {@link org.springframework.web.servlet.HandlerExceptionResolver HandlerExceptionResolver}
* interface that uses the {@link ResponseStatus @ResponseStatus} annotation to map exceptions to HTTP status codes. * interface that uses the {@link ResponseStatus @ResponseStatus} annotation to map exceptions to HTTP status codes.
* <p>This exception resolver is enabled by default in the {@link org.springframework.web.servlet.DispatcherServlet}.
* *
* @author Arjen Poutsma * @author Arjen Poutsma
* @since 3.0 * @since 3.0