错误信息:Can not find the tag library descriptor for “http://java.sun.com/jstl/core”JSTL taglib需要jstl.jar来支持.在1.0和1.1版本的时候,还需要standard.jar来配合.但从1.2版本开始,jar文件名字变成了jstl-1.2.jar,也不再需要standard.jar了.另外,servlet 版本需要2.4以上.所以正确的做法是把jstl-1.2.jar放到WEB-INF/lib里面就可以…
解决在jsp页面中使用jstl无法遍历request域中list集合的问题 1. 前言 最近在写一个很简单的Javaweb项目,里面需要将request域中的list集合加载到jsp页面,我使用el表达式和jstl来加载request域中的list集合,但是在执行jsp页面的时候出现异常 According to TLD or attribute directive in tag file, attribute items does not accept any expressions 2.…