场景:JSP

Unknown tag (c:forEach).

Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/ c

解决:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>需要依赖包;按照查到的资料,JSTL taglib需要jstl.jar来支持。

在1.0和1.1版本的时候,还需要standard.jar来配合。但从1.2版本开始,jar文件名字变成了jstl-1.2.jar,也不再需要standard.jar了。