我阅读了有关此错误的所有帖子,但由于某种原因,它对我不起作用...
这是我的文件夹结构,
我收到标题中提到的错误,
if_tag.jsp 的代码,
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title><c:if> Tag Example</title>
</head>
<body>
<c:set var="salary" scope="session" value="${2000*2}"/>
<c:if test="${salary > 2000}">
<p>My salary is: <c:out value="${salary}"/><p>
</c:if>
</body>
</html>
jstl 库位于 -
C:\tomcat\webapps\ROOT\WEB-INF\lib