java, web, eclipse, tomcat7.0
JSP要用 JSTL,按规范来
<%@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core”%>
报错:Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”
解决:从 tomcat\webapps\examples\WEB-INF\lib下找到jstl.jar和standar.jar,在eclipse里面导入即可。
project RUN,出错:
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files
解决过程:
JSTL1.0和1.1声明差异已经基本不用担心了,不会是这个问题。
tld文件位置呀,
web.xml文件里配置jsp-config之类的,也没用了。
反复试验解决:
其实就是jstl.jar和standar.jar两个包,eclipse没法自动找到,即使导入了也没用。
必须手工复制到 \tomcat\lib 下即可。