平时在页面中使用jstl,直接引入头就行了,一直以为就是简单的引入头<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>就可以了,殊不知,项目是别人都搭建好的,所以有很多细节都不知道,今天在一个新项目上使用jstl,从别的项目直接把头拷过来,但是启动时报错:
message 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
检查了pom.xml,确保了javax.servlet.jsp.jstl包和standar包是有的。跟其他项目对了一遍又一遍,都没有找到什么原因,最后在stackoverflow上看到了一则问答,成功解决了这个问题:
在WEB-INF包下面的lib包引入standard.jar包即可