我有一个遗留的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>
答案 0 :(得分:1)
您可以在<input />
中使用常规<form:form />
元素而不会出现任何问题。这是将提交按钮添加到Spring表单的传统方法。
有关详细信息,请参阅here。