首页 > 移动平台 > 详细

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

时间:2017-03-28 11:12:24      阅读:401      评论:0      收藏:0      [点我收藏+]

报错如下:

技术分享

解决方案:

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" %>

 

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

原文:http://www.cnblogs.com/zhengbin/p/6632018.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!