See: Description
Interface | Description |
---|---|
ModelAndViewResolver |
SPI for resolving custom return values from a specific handler method.
|
Class | Description |
---|---|
AnnotationMethodHandlerAdapter | Deprecated
as of Spring 3.2, in favor of
RequestMappingHandlerAdapter |
AnnotationMethodHandlerAdapter.RequestMappingInfo |
Holder for request mapping metadata.
|
AnnotationMethodHandlerAdapter.RequestSpecificMappingInfo |
Subclass of
AnnotationMethodHandlerAdapter.RequestMappingInfo that holds request-specific data. |
AnnotationMethodHandlerAdapter.RequestSpecificMappingInfoComparator |
Comparator capable of sorting
AnnotationMethodHandlerAdapter.RequestSpecificMappingInfo s (RHIs) so that
sorting a list with this comparator will result in:
RHIs with better matched paths
take precedence over those with a weaker match (as expressed by the path pattern comparator.) Typically, this means that patterns without wild cards and uri templates
will be ordered before those without.
RHIs with one single request method will be
ordered before those without a method, or with more than one method.
RHIs with more request parameters will be ordered
before those with less parameters
|
AnnotationMethodHandlerExceptionResolver | Deprecated
as of Spring 3.2, in favor of
ExceptionHandlerExceptionResolver |
DefaultAnnotationHandlerMapping | Deprecated
as of Spring 3.2, in favor of
RequestMappingHandlerMapping |
ResponseStatusExceptionResolver |
A
HandlerExceptionResolver that uses the @ResponseStatus
annotation to map exceptions to HTTP status codes. |
ServletAnnotationMappingUtils | Deprecated
as of Spring 3.2, together with
DefaultAnnotationHandlerMapping ,
AnnotationMethodHandlerAdapter , and AnnotationMethodHandlerExceptionResolver . |