在SpringMVC 的form:form标签可以通过commandName 和 modelAttribute 获取到model中对应的对象。
<form:form id="inputForm" modelAttribute="ower" action="${src}/ower/save" method="post" class="form-horizontal">
<form:input path="name" htmlEscape="false" maxlength="200" class="input-xlarge required"/>
<input id="name" name="name" class="input-xlarge required" type="text" value="${ower.name}" maxlength="200">
上面的form:input和input标签在form:form中的功能实一样的,在form:input中靠的path属性来获取对应的值
在input标签通过value获取对应的值。(属性名和path要相同。)