我的 index.jsp 上有一个脚本,脚本应该做的是从“session.getAttribute”获取信息并显示在 div 上,但即使没有用户登录,index.jsp 仍应运行
这是脚本
<div class="templatemo_content_left_section">
40: <h1>Bem Vindo</h1>
40: <%= session.getAttribute("currentSessionUser")%>
41: <%if (session.getAttribute("currentSessionUser").equals("")){%>
42: <a href="Login.jsp"><b>Login</b></a>
43:<%}
44: else{%>
45:<a href="logout.jsp"><b>Logout</b></a>
46:<%
47:}
48:%>
我得到的日志显示错误“消息在第 43 行处理 JSP 页面/Index.jsp 时发生异常”