









Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This is an Introductory course of Java Web Programming focusing on writing maintainable extensible code, methods of debugging, logging and profiling. The Java Technology used is J2EE an Enterprise Application Development tool. This lecture includes: Iterator, Tag, Collection, Items, HTTP, Redirect, Parameter, Cookie, JSP, Token
Typology: Slides
1 / 18
This page cannot be seen from the preview
Don't miss anything!










value of var attribute should be of type java.util.Map.Entry
<c:forEach var="customer" items="${customers}"> ${customer}
</c:forEach>
<c:forEach var="i" items="${intArray}"> <c:out value="${i}"/> • </c:forEach> <c:forEach var="string" items="${stringArray}"> <c:out value="${string}"/>
</c:forEach> <c:forEach var="item" items="${enumeration}" begin=" 2 " end=" 10 " step=" 2 "> <c:out value="${item}"/>
</c:forEach> <c:forEach var="prop" items="${numberMap}" begin=" 1 " end=" 5 "> <c:out value="${prop.key}"/> = <c:out value="${prop.value}"/>
</c:forEach> <c:forEach var="token" items="bleu,blanc,rouge"> <c:out value="${token}"/>
</c:forEach>
<c:forTokens var="token" items="one,two,three" delims=","> <c:out value="${token}"/> </c:forTokens>
<c:import url="header.jsp"> <c:param name="pageTitle" value="newInstance.com"/> <c:param name="pageSlogan" value=" " /> </c:import>