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

参考链接:https://blog.csdn.net/sinat_34104446/article/details/82846585

在idea上程序正常运行,部署到服务器上后访问不了,打开localhost.out日志发现报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.

原来是jstl的问题,比较idea编译下的lib包与服务器上lib包的数量是一致的,在百度后尝试了一些解决方法但都不好用:

如添加jstl的maven依赖、添加standard-1.12.jar包到服务器lib下。。。

最后在上面链接中提到还是缺少tld文件的描述,于是把standard包解压缩,复制其中的tld文件到程序WEB-INF/jstl_tld文件夹下,重启程序解决。

你可能感兴趣的:(java,jstl)