springboot中使用spring-session实现共享会话到redis(二)
上篇文章介绍了springboot中集成spring-session实现了将session分布式存到redis中。这篇在深入介绍一些spring-session的细节。
1、session超时:
在tomcat中,如果要设置session的超时,我们可以在web.xml或者springboot的application.properties中直接配置即可,例如在springboot中设置:
server.session.timeout=1800
但引入了spring-session后,这个配置将不再起作用, 我们需要写一个如下的配置类:
-
import org.springframework.context.annotation.Configuration;
-
import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;
-
-
@Configuration
-
//maxInactiveIntervalInSeconds 默认是1800秒过期,这里测试修改为60秒
-
@EnableRedisHttpSession(maxInactiveIntervalInSeconds=60)
-
public class RedisSessionConfig{
-
-
}
注:如果不修改session超时,可以不用该配置类。
2、在springboot中使用spring-session完成登录、登出等功能:
1)定义User实体类:
-
public class User implements Serializable {
-
private static final long serialVersionUID = 1629629499205758251L;
-
-
private Long id;
-
private String name;
-
private String pwd;
-
private String note;
-
private Integer dateAuth;
-
private Integer tableAuth;
-
-
//set/get 方法
注:该类需要序列化,因为spring-session会将该对象序列化后保存到redis中。
2)UserController:
-
@RequestMapping("/user")
-
@Controller
-
public class UserController {
-
private static final Logger logger = LoggerFactory.getLogger(UserController.class);
-
-
@Autowired
-
private UserService userService;
-
-
/**
-
* 退出
-
* @param request
-
* @return
-
*/
-
@RequestMapping("/loginOut")
-
@ResponseBody
-
public ResponseMessage loginOut(HttpServletRequest request, HttpServletResponse response) {
-
HttpSession session = request.getSession();
-
if (session != null) {
-
session.setAttribute(session.getId(), null);
-
}
-
return ResponseMessage.ok(Constants.CODE_SUCCESS,null);
-
}
-
-
/**
-
* 登录验证
-
* @param request
-
* @return
-
*/
-
@RequestMapping("/login")
-
public ModelAndView login(HttpServletRequest request,Model model) {
-
-
String name = request.getParameter("username");
-
String password = request.getParameter("password");
-
-
//TODO校验
-
-
Map<String,String> map = new HashMap<>();
-
map.put("name",name);
-
map.put("pwd",password);
-
-
User user = null;
-
try {
-
user = userService.login(map);
-
} catch (Exception e) {
-
logger.error("user login is error...",e);
-
}
-
-
if (user != null) {
-
HttpSession session = request.getSession();
-
session.setAttribute(session.getId(),user);
-
model.addAttribute("user", user);
-
-
logger.info("user login is success,{}",name);
-
return new ModelAndView("redirect:/index");
-
} else {
-
request.setAttribute("errorInfo", "验证失败");
-
return new ModelAndView("login/login");
-
}
-
}
-
}
注:spring-session会通过拦截器的方式往session对象中存放、移除sessionId(session.getId()),所以我们在登录、登出、拦截器中会调用session.setAttribute(session.getId(),user);来判断。
3)session拦截器:
-
public class SessionInterceptor extends HandlerInterceptorAdapter {
-
private static String[] IGNORE_URI = {"/login.jsp", "/login/","/login","/loginIndex", "/error"};
-
private static Logger log = LoggerFactory.getLogger(SessionInterceptor.class);
-
-
@Override
-
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
-
boolean flag = false;
-
String url = request.getRequestURL().toString();
-
-
/*String currentURL = request.getRequestURI(); // 取得根目录所对应的绝对路径:
-
String targetURL = currentURL.substring(currentURL.lastIndexOf("/"), currentURL.length());// 截取到当前文件名用于比较
-
String currentURLTemp = currentURL.replaceAll("/iis/", "");*/
-
-
for (String s : IGNORE_URI) {
-
if (url.contains(s)) {
-
flag = true;
-
break;
-
}
-
}
-
if (!flag) {
-
HttpSession session = request.getSession();
-
Object obj = session.getAttribute(session.getId());//Constants.SESSION_USER
-
if (null == obj) {//未登录
-
String servletPath = request.getServletPath();
-
log.error("session失效,当前url:" + url+";module Paht:"+servletPath);
-
if (request.getHeader("x-requested-with") != null &&
-
request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest")){
-
-
response.setHeader("sessionstatus", "timeout");//在响应头设置session状态
-
response.setCharacterEncoding("UTF-8");
-
response.setContentType("text/html;charset=UTF-8");
-
response.getWriter().print("error");
-
} else {
-
response.sendRedirect(request.getContextPath()+"/user/loginIndex");
-
}
-
return false;
-
} else {
-
/*User user = (User)obj;
-
if(!RightUtil.hasRight(currentURLTemp, request)){
-
if(!"iisAdminTmp".equals(user.getName()) && !"/index".equals(targetURL)){
-
//response.sendRedirect(request.getContextPath()+"/login/login");//应该返回到没有权限的页面
-
//request.getRequestDispatcher("/login/login").forward(request, response);
-
return false;
-
}
-
}*/
-
}
-
}
-
return super.preHandle(request, response, handler);
-
}
-
-
@Override
-
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
-
super.postHandle(request, response, handler, modelAndView);
-
}
-
-
}
说明:
我们知道spring-session会自动注入springSessionRepositoryFilter过滤器,每一次的请求都由他来过滤,其本质是:对每一个请求的request进行了一次封装。那么,在Controller里面拿出的request实际上是封装后的request,
调用request.getSession()的时候,实际上拿到是Spring封装后的session。这个session则存储在redis数据库中。
应用通过 getSession(boolean create) 方法来获取 session 数据,参数 create 表示 session 不存在时是否创建新的 session 。 getSession 方法首先从请求的 “.CURRENT_SESSION” 属性来获取 currentSession ,没有 currentSession ,则从 request 取出 sessionId ,然后读取 spring:session:sessions:[sessionId] 的值,同时根据 lastAccessedTime 和 MaxInactiveIntervalInSeconds 来判断这个 session 是否过期。如果 request 中没有 sessionId ,说明该用户是第一次访问,会根据不同的实现,如 RedisSession ,MongoExpiringSession ,GemFireSession 等来创建一个新的 session 。 另外, 从 request 取 sessionId 依赖具体的 HttpSessionStrategy 的实现,spring session 给了两个默认的实现 CookieHttpSessionStrategy 和 HeaderHttpSessionStrategy ,即从 cookie 和 header 中取出 sessionId 。
3、spring-session在redis中的存储结构:
spring:session是默认的Redis HttpSession前缀(redis中,我们常用’:’作为分割符)。如上图,每一个session都会创建3组数据:
1)spring:session:sessions:6e4fb910-34f7-453d-a8c6-2b3cd192e051
hash结构,存储了session信息(实体类的序列化数据)、maxInactiveInterval、创建时间、lastAccessedTime四部分信息。
2)spring:session:sessions:expires:6e4fb910-34f7-453d-a8c6-2b3cd192e051
string结构,value为空。
3)spring:session:expirations:1529395440000:
set结构,存储过期时间记录
注:在spring-session中提到,由于redis的ttl删除key是一个被动行为,所以才会引入了expirations这个key,来主动进行session的过期行为判断。
springsession相关参考:
https://segmentfault.com/a/1190000011091273#articleHeader14
https://blog.csdn.net/lxhjh/article/details/78048201
http://www.infoq.com/cn/articles/Next-Generation-Session-Management-with-Spring-Session
https://qbgbook.gitbooks.io/spring-boot-reference-guide-zh/IV.%20Spring%20Boot%20features/38.%20Spring%20Session.html
原文地址:https://blog.csdn.net/liuxiao723846/article/details/80733565
springboot中使用spring-session实现共享会话到redis(二)的更多相关文章
- SpringBoot中使用Spring Data Jpa 实现简单的动态查询的两种方法
软件152 尹以操 首先谢谢大佬的简书文章:http://www.jianshu.com/p/45ad65690e33# 这篇文章中讲的是spring中使用spring data jpa,使用了xml ...
- 使用Spring Session做分布式会话管理
在Web项目开发中,会话管理是一个很重要的部分,用于存储与用户相关的数据.通常是由符合session规范的容器来负责存储管理,也就是一旦容器关闭,重启会导致会话失效.因此打造一个高可用性的系统,必须将 ...
- (十九)SpringBoot之使用Spring Session集群-redis
一.引入maven依赖 <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEnc ...
- springboot中使用spring security,登录url就出现403错误
参考链接:https://segmentfault.com/q/1010000012743613 有两个controller,一个是所有用户可以访问的@RequestMapping("use ...
- SpringBoot中获取spring.profiles.active的值
一.网上很多采用@Profile("dev")的方式获取,但是这个是类级别的 二.开发中可能需要代码级别 1.刚开始我想通过classpath下的文件读取方式,麻烦死了,于是换了个 ...
- SpringBoot中实现Spring容器中注入类型相同但名不同Bean
@Bean(autowire = Autowire.BY_NAME,value = "kaptchaProducer") public Producer kaptchaProduc ...
- 单点登录实现(spring session+redis完成session共享)
一.前言 项目中用到的SSO,使用开源框架cas做的.简单的了解了一下cas,并学习了一下 单点登录的原理,有兴趣的同学也可以学习一下,写个demo玩一玩. 二.工程结构 我模拟了 sso的客户端和s ...
- 大话 Spring Session 共享
javaweb中我们项目稍微正规点,都会用到单点登录这个技术.实现它的方法各家有各界的看法.这几天由于公司项目需求正在研究.下面整理一下最近整理的心得. 简介 在分布式项目中另我们头疼的是多项目之间的 ...
- Spring Session解决Session共享
1. 分布式Session共享 在分布式集群部署环境下,使用Session存储用户信息,往往出现Session不能共享问题. 例如:服务集群部署后,分为服务A和服务B,当用户登录时负载到服务A ...
随机推荐
- switch或判断
<?php $num1 = 1; $num2 = 2; function int($num){ switch($num){ case 1: case 2: echo "1或2" ...
- SDUT-3377_数据结构实验之查找五:平方之哈希表
数据结构实验之查找五:平方之哈希表 Time Limit: 400 ms Memory Limit: 65536 KiB Problem Description 给定的一组无重复数据的正整数,根据给定 ...
- Leetcode868.Binary Gap二进制间距
给定一个正整数 N,找到并返回 N 的二进制表示中两个连续的 1 之间的最长距离. 如果没有两个连续的 1,返回 0 . 示例 1: 输入:22 输出:2 解释: 22 的二进制是 0b10110 . ...
- 调试R代码中出现的常用的函数
1. 字符串连接函数 paste的一般使用格式为: paste(..., sep = " ", collapse = NULL) ...表示一个或多个R可以被转化为字符型的对象:s ...
- ubuntu上安装字体
# fc-list # sudo apt-get -y install fontconfig xfonts-utils # sudo cp XXX.ttf /usr/shar ...
- buffer的相关小知识
php与mysql的连接有三种方式,mysql,mysqli,pdo.不管使用哪种方式进行连接,都有使用buffer和不使用buffer的区别. 什么叫使用buffer和不使用buffer呢? 客户端 ...
- nginx简介 (转)
1.Nginx概述 2.Nginx安装与控制指令 3.Nginx如何工作 4.Nginx配置实例 4.1如何配置Linux下Nginx 4.1.1配置Nginx代理HTTP请求到Tomcat 4.1. ...
- twitter、facebook、pinterest、linkedin 分享代码
twitter.facebook.pinterest.linkedin 分享代码 http://www.cnblogs.com/adstor-Lin/p/3994449.html
- SDUT-2139_从起始点到目标点的最短步数(BFS)
数据结构实验之图论五:从起始点到目标点的最短步数(BFS) Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 在古老的魔兽 ...
- HZOJ 巨神兵
60pts: 每个DAG的拓扑序是唯一的,所以考虑将DAG分层.f[i][j]记录当前选择的节点状态是i,最后一层的节点状态为j(dep取最大). 初始状态:$f[i][i]=1;i\in [1,1& ...