Mantis - Resin
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
465 | minor | always | 11-25-05 00:00 | 11-30-05 10:21 | |
|
|||||
Reporter: | anonymous | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.0.15 | ||
Product Build: | 3.0.15 | Resolution: | fixed | ||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.0.16 | ||
|
|||||
Summary: | 0000465: c:forEach works incorrectly unless <jsp/> is present | ||||
Description: |
RSN-514 This seems to be similar to RSN-492. The following JSP code: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" [^] %> <% java.util.List list = new java.util.ArrayList(); list.add("a"); list.add("b"); list.add("c"); pageContext.setAttribute("list", list); %> <c:forEach items="${list}" var="element"> <c:out value="${element}"/> </c:forEach> Erroneously produces: ${list} Unless the <jsp/> directive is included in web.xml: <web-app> <jsp/> </web-app> In which case it produces: a b c |
||||
Steps To Reproduce: | |||||
Additional Information: | Windows XP, Sun Java 1.5.0_02-b09 | ||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|