org.apache.jasper.JasperException: /index.jsp(1,64) PWC6188: 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
at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:92)
at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:378)
尝试在Eclipse EE中添加JSP标记时出现错误
使用标准J2EE预览服务器
答案 0 :(得分:1)
最可能的原因是您尝试使用的servlet版本和jstl库之间不匹配。
如果您正在使用servlet版本2.5或3.0,则应将jstl标记lib导入为
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
如果您使用2.4,则应将jstl标记lib导入为
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
请在jsp中显示web.xml和taglib导入。这将识别您正在使用的servlet版本,并帮助确定您应该使用的jstl版本。
答案 1 :(得分:0)
此外,我在WebContent / WEB-INF / lib文件夹中有jstl-1.2.jar文件,并且在Java Build Path中添加了该jar - &gt; Libaries 但我在Project Facets中没有JSTL
web.xml中没有JSTL:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>myServlet</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>