The Spring Web model-view-controller (MVC) framework is designed around a DispatcherServlet that dispatches requests to handlers, with configurable handler mappings, view resolution, locale and theme resolution as well as support for uploading files. The default handler is based on the @Controller and @RequestMapping annotations, offering a wide range of flexible handling methods.
Spring MultiActionController
Spring Form Tags
- Spring Checkbox Tag <form:checkbox>
- Spring ErrorsTag <form:errors>
- Spring Form Tag <form:form>
- Spring Hidden Tag <form:hidden>
- Spring Input Tag <form:input>
- Spring Label Tag <form:label>
- Spring Dropdown using <form:select> and <form:option> Tag
- Spring Password Tag <form:password>
- Spring Radiobutton Tag <form:radiobutton>
Spring Handler Mapping
- Spring Handler mappings
- BeanNameUrlHandlerMapping
- ControllerBeanNameHandlerMapping
- ControllerClassNameHandlerMapping
- DefaultAnnotationHandlerMapping
- SimpleUrlHandlerMapping
- Configure Multiple Handler Mappings
Integration with other Frameworks
- Spring and Log4j Example
Example to integrate Log4j into the Spring MVC application.
- Spring and Hibernate Example
Example to integrate Hibernate into the Spring MVC application.
