欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

详解Spring-Boot集成Spring session并存入redis

时间:2021-07-01 08:50:53|栏目:JAVA代码|点击:

spring Session 提供了一套用于管理用户 session 信息的API和实现。

Spring Session为企业级Java应用的session管理带来了革新,使得以下的功能更加容易实现:

  1. 编写可水平扩展的原生云应用。
  2. 将session所保存的状态卸载到特定的外部session存储中,如Redis或Apache Geode中,它们能够以独立于应用服务器的方式提供高质量的集群。
  3. 当用户使用WebSocket发送请求的时候,能够保持HttpSession处于活跃状态。
  4. 在非Web请求的处理代码中,能够访问session数据,比如在JMS消息的处理代码中。
  5. 支持每个浏览器上使用多个session,从而能够很容易地构建更加丰富的终端用户体验。
  6. 控制session id如何在客户端和服务器之间进行交换,这样的话就能很容易地编写Restful API,因为它可以从HTTP 头信息中获取session id,而不必再依赖于cookie。

Spring-Boot集成Spring session并存入redis

添加maven依赖

Redis的相关依赖可以看之前的内容,这里需要增加如下依赖。

<dependency> 
   <groupId>org.springframework.session</groupId> 
   <artifactId>spring-session</artifactId> 
</dependency> 

Java代码实现

增加HttpSessionConfig。

package com.core.config; 
 
import org.springframework.context.annotation.Bean; 
import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession; 
import org.springframework.session.web.http.HeaderHttpSessionStrategy; 
import org.springframework.session.web.http.HttpSessionStrategy; 
 
@EnableRedisHttpSession(maxInactiveIntervalInSeconds = 100, redisNamespace = "xxxx") 
public class HttpSessionConfig { 
 
  @Bean 
  public HttpSessionStrategy httpSessionStrategy() { 
    return new HeaderHttpSessionStrategy(); 
  } 
} 

其中注解 EnableRedisHttpSession 创建了一个名为springSessionRepositoryFilter的Spring Bean,该Bean实现了Filter接口。该filter负责通过 Spring Session 替换HttpSession从哪里返回。这里Spring Session是通过 redis 返回。

类中的方法 httpSessionStrategy(),用来定义Spring Session的 HttpSession 集成使用HTTP的头来取代使用 cookie 传送当前session信息。如果使用下面的代码,则是使用cookie来传送 session 信息。

@Bean 
public HttpSessionStrategy httpSessionStrategy() { 
  return new CookieHttpSessionStrategy(); 
} 

使用HTTP的头,会看到如下信息

-- response -- 
200  
x-auth-token: 4792331e-44c2-4285-a9d1-ebabf0e72251 
Content-Type: text/html;charset=UTF-8 
Content-Length: 75 
Date: Mon, 09 Jan 2017 10:14:00 GMT 
 
8e107efb-bf1e-4a55-b896-c97f629c8e40 : 4792331e-44c2-4285-a9d1-ebabf0e72251 

使用cookie,会看到如下信息

-- response -- 
200  
Set-Cookie: SESSION=4792331e-44c2-4285-a9d1-ebabf0e72251;path=/;HttpOnly 
Content-Type: text/html;charset=UTF-8 
Content-Length: 75 
Date: Mon, 09 Jan 2017 10:47:37 GMT 

测试

在controller中增加如下代码

@GetMapping("/") 
public String uid(HttpServletRequest request) { 
  HttpSession session = request.getSession(); 
  UUID uid = (UUID) session.getAttribute("uid"); 
  if (uid == null) { 
    uid = UUID.randomUUID(); 
  } 
  session.setAttribute("uid", uid); 
  return uid.toString() + " : " + session.getId(); 
} 

启动服务,在chrome浏览器输入 http://127.0.0.1:8080/,得到sessionId

fbfae849-1d49-4301-b963-573048e763e7 

在redis中可以看到如下信息

1) "spring:session:xxxx:sessions:fbfae849-1d49-4301-b963-573048e763e7" 

2) "spring:session:xxxx:expirations:1483958700000" 

3) "spring:session:xxxx:sessions:expires:fbfae849-1d49-4301-b963-573048e763e7" 

打开火狐的HttpRequester,使用chrome获取的sessionId点击Get,可以看到如下输出

上一篇:Eclipse新建web项目流程图解

栏    目:JAVA代码

下一篇:浅谈Java编程中的单例设计模式

本文标题:详解Spring-Boot集成Spring session并存入redis

本文地址:http://www.codeinn.net/misctech/150766.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有