Spring MVC Form Tag LibraryThe Spring MVC form tags are the configurable and reusable building blocks for a web page. These tags provide JSP, an easy way to develop, read and maintain. The Spring MVC form tags can be seen as data binding-aware tags that can automatically set data to Java object/bean and also retrieve from it. Here, each tag provides support for the set of attributes of its corresponding HTML tag counterpart, making the tags familiar and easy to use. Configuration of Spring MVC Form TagThe form tag library comes under the spring-webmvc.jar. To enable the support for form tag library, it is required to reference some configuration. So, add the following directive at the beginning of the JSP page: List of Spring MVC Form TagsLet's see some of the frequently used Spring MVC form tags.
The form tagThe Spring MVC form tag is a container tag. It is a parent tag that contains all the other tags of the tag library. This tag generates an HTML form tag and exposes a binding path to the inner tags for binding. SyntaxIn the next section, we will learn more about each form tag.
Next TopicForm Text Field
|