Package org.springframework.web.servlet.mvc.support

Support package for MVC controllers.

See:
          Description

Interface Summary
RedirectAttributes A specialization of the Model interface that controllers can use to select attributes for a redirect scenario.
 

Class Summary
AbstractControllerUrlHandlerMapping Base class for HandlerMapping implementations that derive URL paths according to conventions for specific controller types.
AnnotationControllerTypePredicate Extension of ControllerTypePredicate that detects annotated @Controller beans as well.
ControllerBeanNameHandlerMapping Implementation of HandlerMapping that follows a simple convention for generating URL path mappings from the bean names of registered Controller beans as well as @Controller annotated beans.
ControllerClassNameHandlerMapping Implementation of HandlerMapping that follows a simple convention for generating URL path mappings from the class names of registered Controller beans as well as @Controller annotated beans.
ControllerTypePredicate Internal helper class that identifies controller types.
DefaultHandlerExceptionResolver Default implementation of the HandlerExceptionResolver interface that resolves standard Spring exceptions and translates them to corresponding HTTP status codes.
RedirectAttributesModelMap A ModelMap implementation of RedirectAttributes that formats values as Strings using a DataBinder.
 

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

Support package for MVC controllers. Contains a special HandlerMapping for controller conventions.