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

这是 servlet 中的代码:

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

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

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

答案 1
<c:if test="${sessionScope.user != null}">
    There is a user **attribute** in the session
</c:if>

答案 2

我想你的意思是检查会话范围对吗?

<c:if test="${!empty sessionScope.user}">