HTTP Status 500 PWC6188 jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

报错如下:

解决方案:

1.可能是依赖引用错了,注意 JSP 应依赖:

<!-- JSP -->
<dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.2</version>
    <scope>provided</scope>
</dependency>

2.修改 JSP 页面 JSTL 的 URI:

由:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

改为:

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
原文地址:https://www.cnblogs.com/zhengbin/p/6632018.html