有的时候在开发jsp时,需要使用jstl时,在jsp上面引用jstl却出现错误:Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core,这是由于缺少两个jar包导致的. 下面是包的下载地址: jstl包…
在查了N个帖子之后,决定记录一下关于jstl taglib的配置方法. 首先我遇到的错误是: 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了.另外,s…
出现java cannot find the tag library descriptor for "http://java.sun.com/jsp/jstl/core" 主要的愿意是因为没有jstl的jar包,如果你里面有了,那么可能是版本的问题,j2ee版本如果是1.4那么就要加jstl.jar包,如果是以上就不用加了,还有一个问题是jstl.jar包版本的问题,如果你里面是jstl1.1那么http://Java.sun.com/jsp/jstl/core就是这样,如果是1.0那…
今天使用eclipse开发ssh,出现Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core".jar包都加进来了啊,以前使用myeclipse也没有出现过这种问题,后来上网查询了一下,说是少了jstl.jar和standard.jar,导入了这两个jar包后果然好了.myeclipse会自动引入,不需要手动导入.…
使用jstl报错:According to TLD or attribute directive in tag file, attribute value does not accept any expressions 在使用jsp2.0版本时,标签中的属性不支持表达式.解决办法是将 <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %> 改为 <%@ taglib prefix=&…