我无法将JSTL tage用于单选按钮

时间:2016-04-08 05:05:35

标签: spring jstl

我收到了错误:

  

未终止< form:radiobutton标记

你能取悦吗? 帮我解决这个JSTL问题。

这是我在JSP中使用spring form的代码语句:

<label class="radio-inline">
<form:radiobutton  path="kanrenkimnuhenkoushinseiId"   value="${item.kinmuHenkouShinseiId}" id="radio" 
 <c:if test="${item.kanrenKinmuHenkoShinseiId != null && item.kanrenKinmuHenkoShinseiId == shinseihenkouform.shinseiId }">checked="checked"</c:if>/>
<fmt:formatDate pattern="YYYY/MM/dd" value="${item.taishoubi}" />
</label>

1 个答案:

答案 0 :(得分:2)

您不能在另一个JSP标记(c:if)中使用JSP标记(form:radiobutton)。

您无论如何也不需要:form:radiobutton的目的是根据path及其value引用的属性值自动选择它。有关示例,请参阅this