zoukankan      html  css  js  c++  java
  • HttpSession javax.servlet.http.HttpServletRequest.getSession(boolean arg0)理解

    request.getSession()和request.getSession(true)意思相同:获取session,如果session不存在,就新建一个

    reqeust.getSession(false)获取session,如果session不存在,则返回null

    如果 项目中无法确定回话一定存在,最好用request.session(false);

    getSession(boolean create)意思是返回当前reqeust中的HttpSession ,如果当前reqeust中的HttpSession 为null,当create为true,就创建一个新的Session,否则返回null; 
    简而言之: 
    HttpServletRequest.getSession(ture)等同于 HttpServletRequest.getSession() 
    HttpServletRequest.getSession(false)等同于 如果当前Session没有就为null; 

    3.      使用

    当向Session中存取登录信息时,一般建议:HttpSession session =request.getSession();

    当从Session中获取登录信息时,一般建议:HttpSession session =request.getSession(false);

    4.      更简洁的方式

    如果你的项目中使用到了spring(当然大点的项目都用到了),对session的操作就方便多了。如果需要在Session中取值,可以用WebUtils工具(org.springframework.web.util.WebUtils)的getSessionAttribute(HttpServletRequestrequest, String name)方法,看看源码:

    publicstatic Object getSessionAttribute(HttpServletRequest request, String name){  

    Assert.notNull(request, "Request must not be null");  

    HttpSession session =request.getSession(false);  

    return (session != null ?session.getAttribute(name) : null);  

    }

    注:Assert是Spring工具包中的一个工具,用来判断一些验证操作,本例中用来判断reqeust是否为空,若为空就抛异常

    你使用时:WebUtils.setSessionAttribute(request, “user”, User);

            User user = (User)WebUtils.getSessionAttribute(request, “user”);

    三、运行结果

    以上例子均测试验证通过。

  • 相关阅读:
    [翻译]关于堆和堆栈
    sql 字符+数值 混合排序 lcs
    证明DataReader分页的可行性 lcs
    谈谈我对小公司、大公司及个人成长的见解 lcs
    sina 通用js代码说明 lcs
    Linux系统下生成证书 https证书
    【转】51单片机外部中断的C51编程
    【转】如何建立个人网站
    【转】关于C51的中断编程[原创]
    【转】毫不费力:破解加密PDF文档就使用这两三招
  • 原文地址:https://www.cnblogs.com/interdrp/p/7047363.html
Copyright © 2011-2022 走看看