[Error] The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml ...

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kiss_xiaojie/article/details/76944517

###Error: 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

    在 JSP 中引入 Jstl 出现上述错误。引入代码如下:

    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

解决方案

    出现这种错误是因为 jstl-1.2.jar 导入到的 lib 目录不对。需要在 WEB-INF 里面创建一个 lib 目录,然后再导入。这就可以了。

    不知道其他的 jar 包需要这样吗。。。

    最后,感谢 yangchagnqing1234的博客

猜你喜欢

转载自blog.csdn.net/kiss_xiaojie/article/details/76944517