抽取出用于存储或获取的seesion值的类,便于维护

  • 属性定义所需的session的key值
  • 定义set方法存放值进session的中
  • 定义get方法获取对应的session的value值
  • 调用了getSession方法,是springmvc提供的方法(copy进来的),可以直接获取当前session对象

代码演示

public class UserContext {
    //    抽取常量session中使用的key值
    public static final String USER_IN_SESSION = "USER_IN_SESSION";
    public static final String PREMISSION_IN_SESSION = "PREMISSION_IN_SESSION";


    public static HttpSession getSession() {
        ServletRequestAttributes attrs =
                (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        return attrs.getRequest().getSession();
    }

    public static void setCurrentUser(Employee employee) {
//把用户信息存到session
        getSession().setAttribute(UserContext.USER_IN_SESSION, employee);
    }

    public static void setPremissions(List<String> list) {
//把权限信息存到session
        getSession().setAttribute(UserContext.PREMISSION_IN_SESSION, list);
    }

    public static Employee getCurrentUser() {
//        session中取用户信息
        return (Employee) getSession().getAttribute(USER_IN_SESSION);
    }

    public static List<String> getPermissions() {
//        从session中取权限信息
        return (List<String>) getSession().getAttribute(PREMISSION_IN_SESSION);
    }


}

调用演示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值