JAVA基础(七)之Session

会话管理

1. HttpSession会话管理

 public void doGet(HttpServletRequest request, HttpServletResponse response)
             throws ServletException, IOException {

         response.setCharacterEncoding("UTF=8");
         response.setContentType("text/html;charset=UTF-8");
         //使用request对象的getSession()获取session,如果session不存在则创建一个
         HttpSession session = request.getSession();
         //将数据存储到session中
         session.setAttribute("data", "孤傲苍狼");
         //获取session的Id
         String sessionId = session.getId();
         //判断session是不是新创建的
         if (session.isNew()) {
             response.getWriter().print("session创建成功,session的id是:"+sessionId);
         }else {
             response.getWriter().print("服务器已经存在该session了,session的id是:"+sessionId);
         }
     }
 
     public void doPost(HttpServletRequest request, HttpServletResponse response)
             throws ServletException, IOException {
         doGet(request, response);
     }

在jsp中,可用如下方法来获得session对象:

<%
   String username=(String)session.getAttribute("username");
   if(username == null){
   %>
      
   <% }%>

Session对象的销毁:
session对象默认30分钟没有使用,则服务器会自动销毁session,在web.xml文件中可以手工配置session的失效时间,例如:



  
  
  
    index.jsp
  

  
    
        15
    

转载自http://www.cnblogs.com/xdp-gacl/p/3855702.html


你可能感兴趣的:(JAVA基础(七)之Session)