Jsp抛出异常org.apache.jasper.JasperException
异常具体如下:
org.apache.jasper.JasperException: 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
部署web项目,如果抛出此异常:
1.请保证 standard.jar与jstl.jar 两个jar包是否 在部署的项目中存在;
2.如果不存在,请把这两个包加入 /WEB-INF/lib 中;
3.然后保证jsp中引用的版本地址 和 此版本地址是一致的
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="f"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
我遇到这个问题是因为没有导jar包。希望对您有所帮助。