10.23
JSTL
JSP Standard Tag Library JSP标准标签库
JSP为开发者提供的一系列的标签,使用这些标签可以完成一些逻辑处理,比如循环遍历集合,让代码更加简洁,不再出现JSP脚本穿插的情况。
实际开发中EL和JSTL结合起来使用,JSTL侧重于逻辑处理,EL负责展示数据。
JSTL的使用
1、需要导入jar包(两个:jstl.jar 和 standard.jar)存放的位置web/WEB-INF
2、在JSP页面开始的地方导入JSTL标签库
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3、在需要的地方使用
<c:forEach items="${list}" var="user"> <tr> <td>${user.id}</td> <td>${user.name}</td> <td>${user.score}</td> <td>${user.address.value}</td> </tr> </c:forEach>