jsp
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>JSTL Example</title>
</head>
<body>
<c:set var="collection" value="${['Apple', 'Banana', 'Orange']}" />
<c:forEach var="item" items="${collection}">
${item}<br>
</c:forEach>
</body>
</html>