<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:forEach var="item" items="${list}">
${item}
</c:forEach>
<c:if test="${condition}">
</c:if>
<c:choose>
<c:when test="${condition}">
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
<c:out value="${data}" />
<fmt:message key="welcome.message" />