JSTL sessionScope属性

时间:2015-10-03 08:23:31

标签: java java-ee jstl

我需要在.jspx文件中检索会话属性,以下内容不起作用:

在控制器中,我按如下方式设置属性:

request.getSession().setAttribute("error", 1);

然后尝试检索.jspx文件中的属性:

<c:if test="${sessionScope.error eq 1}">
    <p>Retrieved</p>
</c:if>

我没有得到&#34;检索&#34;信息。 我做错了什么?

如果我只使用request.SetAtribute并且不使用sessionScope,那么一切都按预期工作。为什么呢?

0 个答案:

没有答案