创建session学习-request.getSession()
在HttpServlet中,HttpSession对象通常在request.getSession(true)方法调用时才创建。 HttpSession的使用是有代价的,需要占用服务器资源,本着能不浪费就不浪费的原则,我希望系统中的session都在掌握之中,在需要创建时由我们的代码明确创建。但是最近在开发中发现,新的session对象经常在意料之外出现,究竟是谁在创建session呢?
最常见的地方是错误的使用request.getSession()函数,通常在action中检查是否有某个变量/标记存放在session中。这个场景中可能出现没有session存在的情况,正常的判断应该是这样:
private boolean ifFlagExistInSession(HttpServletRequest request) { HttpSession session = request.getSession(false); if (session != null) { if (session.getAttribute("flagName") != null) { return true; } } return false;
private boolean ifFlagExistInSession(HttpServletRequest request) { HttpSession session = request.getSession(); // a new session created if no session exists if (session.getAttribute("flagName") != null) { return true; } return false;}
//Struts Bean方法里session的用法 String login_name = rs.getString("true_name"); //返回和请求相关的session HttpSession session = request.getSession(); //把truename的属性值login_name保存在session对象中 session.setAttribute("truename", login_name);
public static void loginFalse(HttpServletRequest request) { String login_false = "Your username or password is wrong!!!"; HttpSession session = request.getSession(); session.setAttribute("loginfalse", login_false); }
<%String loginwrong = (String) session.getAttribute("loginfalse"); if (loginwrong != null) { %> <%=loginwrong%> <% //销毁session session.removeAttribute("loginfalse"); } session.removeAttribute("truename"); %>
<%String u = (String) session.getAttribute("truename");%> <%=u%> <%if (u == null) {%> <logic:forward name="g_login"/> <%}%> <html:link page="/login.jsp">logout</html:link>