SpringMVCでフォームを作成しようとしています。
スクリプレットなどを使用して、要素のアクション属性を動的に設定したい。<form>
MyForm:
<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>
エラー:%>"の属性が正しく終了していません