记录jsp项目中The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml问题

前提概要:
闲来无事 打开大学写的代码 当时还是学习jsp servlet的时候
原编辑器:myeclipse
现编辑器:idea
在配置完tomcat之后开始启动项目
嚯!好家伙 什么情况
在我印象里应该是能正常运行的啊 怎么会报:The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml???

在网上找到了很多方法,什么更换jar包的版本、把jar包解压出cld文件再放入web-inf的lib包下等等
都没鸟用,甚至还出现了下面这个问题
记录jsp项目中The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml问题_第1张图片
其实总归是jar包的问题 要么是没有、要么是冲突、要么是版本
打开了tomcat的查看里面的jar包
记录jsp项目中The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml问题_第2张图片
lib包下没有我们所需要的jstl等jar包
手动移入到tomcat的lib下 重启项目 成功。。。。。

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