Package org.springframework.web.servlet.mvc.annotation

Support package for annotation-based Servlet MVC controllers.

See:
          Description

Interface Summary
ModelAndViewResolver SPI for resolving custom return values from a specific handler method.
 

Class Summary
AnnotationMethodHandlerAdapter Implementation of the HandlerAdapter interface that maps handler methods based on HTTP paths, HTTP methods and request parameters expressed through the RequestMapping annotation.
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.RequestSpecificMappingInfos (RHIs) so that sorting a list with this comparator will result in: RHIs with better matched paths take prescedence 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 Implementation of the HandlerExceptionResolver interface that handles exceptions through the ExceptionHandler annotation.
DefaultAnnotationHandlerMapping Implementation of the HandlerMapping interface that maps handlers based on HTTP paths expressed through the RequestMapping annotation at the type or method level.
ResponseStatusExceptionResolver Implementation of the HandlerExceptionResolver interface that uses the @ResponseStatus annotation to map exceptions to HTTP status codes.
ServletAnnotationMappingUtils Helper class for annotation-based request mapping.
 

Package org.springframework.web.servlet.mvc.annotation Description

Support package for annotation-based Servlet MVC controllers.