错误http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml 的解决办法

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar

这种错误是由jstl的jar包没有完全导入,而又使用了JSTL标签所引起的。所以解决办法如下:


检查虚拟目录下WEB-INF目录下的lib文件夹(如果同有lib文件夹,后动创建一个)中是否有jstl.jar
的standard.jar两个java包。如果没有则把它们复制到lib下面。


需要注意的是,jsp页头的代码是:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 【jstl1.2版本用】

你可能感兴趣的:(错误http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml 的解决办法)