小编典典

在JSP中,如何使用JSTL检查请求中是否存在某些会话属性?

jsp

这是servlet中的代码:

HttpSession session = request.getSession(true);
session.setAttribute("user", user);

我正在将请求转发到JSP,在这里我想检查是否附加了会话范围的用户参数。

<c:if test="${??? - check if user is attached to request}">
/   /message
</c:if>

阅读 251

收藏
2020-06-08

共1个答案

小编典典

<c:if test="${sessionScope.user != null}">
    There is a user **attribute** in the session
</c:if>
2020-06-08