📜  Spring MVC表单标签库

📅  最后修改于: 2020-12-04 08:29:17             🧑  作者: Mango

Spring MVC表单标签库

Spring MVC表单标签是网页的可配置和可重用的构建块。这些标签提供了JSP,这是一种开发,读取和维护的简便方法。

Spring MVC表单标签可以看作是可识别数据绑定的标签,可以自动将数据设置为Java对象/ bean并从中进行检索。在这里,每个标签都为其对应的HTML标签对应属性集提供支持,从而使标签变得熟悉且易于使用。

Spring MVC表单标签的配置

表单标签库位于spring-webmvc.jar下。要启用对表单标签库的支持,需要参考一些配置。因此,在JSP页面的开头添加以下指令:

<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>

Spring MVC表单标签列表

让我们看看一些常用的Spring MVC表单标签。

Form Tag Description
form:form It is a container tag that contains all other form tags.
form:input This tag is used to generate the text field.
form:radiobutton This tag is used to generate the radio buttons.
form:checkbox This tag is used to generate the checkboxes.
form:password This tag is used to generate the password input field.
form:select This tag is used to generate the drop-down list.
form:textarea This tag is used to generate the multi-line text field.
form:hidden This tag is used to generate the hidden input field.

表单标签

Spring MVC表单标签是容器标签。它是一个父标记,其中包含标记库的所有其他标记。该标签生成HTML表单标签,并向内部标签公开绑定路径以进行绑定。

句法


在下一节中,我们将了解有关每个表单标签的更多信息。