The absolute uri: http://java.sun.com/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
jstl:的应用配置:第一种:直接把tld文件放在web-inf下面,然后在web.xml配置第二种:把2个jar文件放在web-inf/lib/下,然后在jsp也面直接写固定的absolute uri
如果是1.0版本的:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
 
1.1版本
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>