本文主要是介绍Java WEB 将用户登录状态写入全局会话以及单次会话,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
全局会话:
ServletContext application = request.getSession().getServletContext();
application.setAttribute("userEmail", email);
LOG.info(application.getAttribute("userEmail"));
单次会话:
HttpSession httpSession = request.getSession();
httpSession.setAttribute("userEmail", email);
对比:
在Application中写入的谁,可以在Session中或取出来。
这篇关于Java WEB 将用户登录状态写入全局会话以及单次会话的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!