在JSP项目中,我使用jstl-tags,但它无法正常工作。
<%String s="michael"; %>
<p>The person's name is <c:out value="${s}" /></p>
<c:if test="${s != null}">
<%=s %>
</c:if>`enter code here`
此代码生成: &#34;该人的姓名是&#34;
但是当它只是jstl代码时它才有效。 像这个例子
<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>
并生成&#34;我的工资是:4000&#34;正确。
我在WebContent \ WEB-INF \ lib中安装了jstl-1.2.jar 我在jsp页面的顶部添加了这一行...
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
我尝试重新启动服务器,重新启动计算机,下载新的jstl-1.2.jar但没有任何作用。
我不习惯使用JSP,所以我可能错过了一些东西。有人有想法或建议吗?
由于