I recently upgraded to version 2 of Spring, and I am having trouble with a very simply JSTL.
The following code is a standard error message display.
It works fine under the release candidates, but not under the final Version 2 release.
Any ideas what might be wrong?Code:<c:if test="${not empty messages}"> <span id="messages" name="messages" class="message" > <c:forEach var="aMessage" items="${messages}"> <br/><c:out value="${aMessage}" /> </c:forEach> </span> </c:if>


Reply With Quote