gpt4 book ai didi

java - 如何编写 JSTL 而不是 Scriplet 来获取用户 Session?

转载 作者:行者123 更新时间:2023-11-29 08:07:00 25 4
gpt4 key购买 nike

以下:

<% if ((String) session.getAttribute("userID") != null) { 
String username= (String) session.getAttribute("userID"); %>
<li><a><small>Logged in as <%=username %></a></li>
<% } %>

谢谢

最佳答案

应该工作:

<c:if test="${not empty sessionScope.userID}">
<li><a><small>Logged in as ${sessionScope.userID}</a></li>
</c:if>

关于java - 如何编写 JSTL 而不是 Scriplet 来获取用户 Session?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10489130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com