jstl导入标签库问题
jstl是这样导入标签库的没错吧-<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
怎么运行的时候提示
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core
cannot be resolved in either web.xml or the jar files deployed with this application
错误呢,哪位知道是怎么回事啊……
------解决方案--------------------那你这样,把DTD文件拷贝到 classes 目录下,
然后将http://java.sun.com/jsp/jstl/core 换成相对于classes目录下的core文件DTD的URL.
------解决方案--------------------lz把jstl几个jar包导入项目试试看。
至于el表达式的意思还是看书吧,不难。
------解决方案--------------------估计是缺少jar包的缘故
------解决方案--------------------用的是myeclipse自动发布么?
可能是因为jstl的包是后加入的,没有同步到tomcat。
如果这样,把项目重新发布一下,再试试