使用JSTL核心标签出错
使用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
此错误页面是自已定义的。
原因
可能是在Maven中导入了jstl-api-1.2.jar和standard-1.1.2.jar(我自己使用的版本),而在Tomcat中没有生成或导入
处理方法:
在IDEA中找到这两个包的路径把他们复制在Tomcat中的lib文件夹中
重新运行项目成功!
本文地址:https://blog.csdn.net/weixin_46649583/article/details/111033656
上一篇: c# 几种常见的加密方法的实现