org.apache.jasper.JasperException:jsp Unterminated< c:if tag

时间:2017-12-29 12:47:20

标签: jsp

当一个人试图改变他/她的状态时,我想从jsp文件中删除当前状态。我的代码运行正常。 我添加了 c:if ,然后我开始收到此错误。 请纠正我哪里出错了。

  </c:when><c:otherwise>
                    <tr>
                        <td class="label"><bean:message key="changeStatus.new"/></td>
                        <td>
                            <html:select property="memberStatus">
                                <html:option value=""><bean:message key="global.select.empty" /></html:option>
                                <c:forEach var="status" items="${memberStatuses}">
                                    <html:option value="${status}"><bean:message key="changeStatus.${status}"/></html:option>
                                    <c:if test="${status == member.status}" <html:option value="${status}"><bean:message key="changeStatus.${status}"/></html:option>
                                    </c:if>
                                </c:forEach>    
                            </html:select>
                        </td>
                    </tr>

   </c:otherwise></c:choose>

1 个答案:

答案 0 :(得分:1)

  

jsp未终结nil代码

当您忽略添加关闭标记时会出现问题。所以你也需要为&lt;c:if贴上&gt;(即&gt;符号)标签。

c:if