问题遇到的现象和发生背景
使用JSTL标签库的时候出现的错误
问题相关代码,请勿粘贴截图
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%--
Created by IntelliJ IDEA.
User: 86155
Date: 2022/4/26
Time: 16:45
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
${requestScope.abc}
<c:set scope="request" var="abc" value="564"></c:set>
${requestScope.abc}
</body>
</html>
运行结果及报错内容
我的解答思路和尝试过的方法
导入不同的包
我想要达到的结果
解决问题