欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用JSTL核心标签出错

程序员文章站 2022-06-24 16:41:47
使用IDEA导入JSTL核心标签(<%@ taglib prefix=“c” uri=“http://java.sun.com/jsp/jstl/core” %>)时报500,出错:生成错误代码:严重: Servlet.service() for servlet [jsp] in context with path [] threw exception [The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolve...

使用IDEA导入JSTL核心标签(<%@ taglib prefix=“c” uri=“http://java.sun.com/jsp/jstl/core” %>)时报500,出错:

生成错误代码:

严重: Servlet.service() for servlet [jsp] in context with path [] threw exception [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] with root cause
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
使用JSTL核心标签出错

此错误页面是自已定义的。

原因

可能是在Maven中导入了jstl-api-1.2.jarstandard-1.1.2.jar(我自己使用的版本),而在Tomcat中没有生成或导入

处理方法:

在IDEA中找到这两个包的路径把他们复制在Tomcat中的lib文件夹中
使用JSTL核心标签出错

使用JSTL核心标签出错

重新运行项目成功!

本文地址:https://blog.csdn.net/weixin_46649583/article/details/111033656