码迷,mamicode.com
首页 > 其他好文 > 详细

登入时session的处理方式

时间:2017-12-23 15:45:52      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:listen   final   body   过程   utc   bsp   info   tor   分享图片   

暂时理解不够彻底  有空在详细介绍,先记录代码

1:创建一个工具类  存取当前登录用户

 1 package com.liveyc.eloan.util;
 2 
 3 import javax.servlet.http.HttpSession;
 4 
 5 import org.springframework.web.context.request.RequestContextHolder;
 6 import org.springframework.web.context.request.ServletRequestAttributes;
 7 
 8 import com.liveyc.eloan.base.domain.Logininfo;
 9 
10 
11 /**
12  * 存取当前登录用户的工具类
13  * 
14  * @author Administrator
15  * 
16  */
17 public class UserContext {
18 
19     public static final String CURRENT_LOGININFO_IN_SESSION = "logininfo";
20 
21     private static HttpSession getSession() {
22         return ((ServletRequestAttributes) RequestContextHolder
23                 .getRequestAttributes()).getRequest().getSession();
24     }
25 
26     public static void putCurrent(Logininfo current) {
27         getSession().setAttribute(CURRENT_LOGININFO_IN_SESSION, current);
28     }
29 
30     public static Logininfo getCurrent() {
31         return (Logininfo) getSession().getAttribute(
32                 CURRENT_LOGININFO_IN_SESSION);
33     }
34 
35 }

2:在Controller所在的项目的web.xml中配置监听器

1 <listener>
2     <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
3 </listener>

看源码可发现 包装过程

技术分享图片

所以在util工具类中 session的获取方式 

技术分享图片

 

登入时session的处理方式

标签:listen   final   body   过程   utc   bsp   info   tor   分享图片   

原文地址:http://www.cnblogs.com/xuyou551/p/8093375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!