<%@ page import="cn.itcast.domain.Person"%> <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <!DOCTYPE HTML> <html> <head> <title>使用 JSTL + EL 完成集合迭代</title> </head> <body> <% List list = new ArrayList(); list.add(new Person("abc")); list.add(new Person("abcd")); list.add(new Person("abcde")); list.add(new Person("abcdef")); request.setAttribute("list", list); %> <c:forEach var="person" items="${ list }"> ${ person.name }<br /> </c:forEach> <% Map map = new HashMap(); map.put("aa", new Person("abc")); map.put("bb", new Person("abcd")); map.put("cc", new Person("abcde")); map.put("dd", new Person("abcdef")); map.put("111", new Person("abcdefg")); request.setAttribute("map", map); %> <c:forEach var="entry" items="${ map }"> ${ entry.key } : ${ entry.value.name } <br /> </c:forEach> <!-- 常用代码 --> <c:if test="${ user != null }"> 欢迎使用:${ user.username } </c:if> <c:if test="${ user == null }"> <input type="button" value="登录" /> </c:if> </body> </html>
使用前需找到 jstl.jar 和 standard.jar 这两文件并复制到项目中的 WebRoot -> WEB-INF -> lib 目录下,eclipse 会自动生成到 Web App Libraries 引用。
然后在引用中的 standard.jar 下找到 META-INF 目录,打开里面的 c.tld 并复制 uri 地址。
时间: 2024-10-06 00:35:38