你能在一个HTML表单中混合和匹配Spring表单标签和常规HTML表单标签吗?

时间:2010-08-27 22:27:24

标签: spring spring-mvc html-form

我有一个遗留的HTML表单,我想将其制作成Spring表单。我是否需要将所有表单标签切换为Spring表单标签,还是可以根据需要将它们混合搭配?

换句话说,就像这样:

<form:form modelAttribute="mymodel" action="/somecontroller/someaction" method="post">
<input type="text" name="something" value="">
</form:form>

而不是这个(仅使用Spring表单标签):

<form:form modelAttribute="mymodel" action="/somecontroller/someaction" method="post">
<form:input path="something" />
</form:form>

1 个答案:

答案 0 :(得分:1)

您可以在<input />中使用常规<form:form />元素而不会出现任何问题。这是将提交按钮添加到Spring表单的传统方法。

有关详细信息,请参阅here