我正在尝试在 Spring MVC 中创建一个表单。
我想使用scriplet或其他东西动态设置元素的动作属性。<form>
我的表格:
<form:form id="myForm" modelAttribute="myFormBean"
action="<%=baseUrl%>/myFormControllerPattern" name="myForm">
<fieldset>
<table>
<tr>
<th>Name</th>
<td><form:input path="name" /></td>
</tr>
<tr>
<th>Age</th>
<td><form:input path="age"/></td>
</tr>
</table>
</fieldset>
</form:form>
错误:%>" 的属性未正确终止