myeclipse8.6使用jstl遇到的错误The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in eit

错误: 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小例子,结果引入<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
这句话,发布工程后直接访问index.jsp页面会出错说是找不到绝对路径。
解决方案:在lib文件夹下引入就好使了,web.xml中什么都不用写。

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