我无法在我的注销方法中使用session.invalidate()关闭我的会话请帮忙!
public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException
{
response.setContentType("text/html");
PrintWriter out = response.getWriter();
response.getWriter().println("<h3><a href='/assign2'>Logged out Successfully</a></h3>");
HttpSession session = request.getSession(false);
if(session!=null)
session.invalidate();
}
用户名不会全部写入
这是我欢迎的页面,我正在重定向它
HttpSession session=request.getSession(false);
if(session!=null)
{
if((request.getSession().getServletContext().getAttribute("userid")) != null)
{
username = request.getSession().getServletContext().getAttribute("userid").toString();
}
}
System.out.println(username);
答案 0 :(得分:0)
注销页面没问题,但在欢迎页面中,您正在混合概念:
尽管session.invalidate
的执行解除了所有绑定属性的绑定,但您正在从ServletContext而不是Session中检索属性userid
。此外,请注意,request.getSession()
会在必要时创建新会话。
存储和检索属性的一致方法是通过HttpSession对象:
HttpSession session=request.getSession(false);
if(session!=null)
{
if((session.getAttribute("userid")) != null)
{
username = session.getAttribute("userid").toString();
}
}
System.out.println(username);