Features of Spring Web MVC Framework:-
There are several fatures of Spring MVC Framework as follows:
1 Clear separation of roles: Each role controller, validator, command
object, form object, model object, DispatcherServlet, handler mapping,
view resolver, and so on — can be fulfilled by a specialized object.
2 Powerful and straightforward configuration: of both framework and application classes as JavaBeans. This configuration capability includes easy referencing across contexts, such as from web controllers to business objects and validators.
3 Adaptability and flexibility: Define any controller method signature you need, possibly using one of the parameter annotations (such as @RequestParam, @RequestHeader, @PathVariable, and more) for a given scenario.
4 Reusable business code, no need for duplicatio:. Use existing business objects as command or form objects instead of mirroring them to extend a particular framework base class.
5 Customizable binding and validation: Type mismatches as application-level validation errors that keep the offending value, localized date and number binding, and so on instead of String-only form objects with manual parsing and conversion to business objects.
6 Customizable handler mapping and view resolution: Handler mapping and view resolution strategies range from simple URL-based configuration, to sophisticated, purpose-built resolution strategies. Spring is more flexible than web MVC frameworks that mandate a particular technique.
7 Flexible model transfer: Model transfer with a name/value Map supports easy integration with any view technology.
8 The Spring tag library that provides support for features such as data binding and themes. The custom tags allow for maximum flexibility in terms of markup code.
9 A JSP form tag library, introduced in Spring 2.0, that makes writing forms in JSP pages much easier.
10 Beans whose lifecycle is scoped to the current HTTP request or HTTP Session. This is not a specific feature of Spring MVC itself, but rather of the WebApplicationContext container(s) that Spring MVC uses.