热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

架构实战篇(十二):SpringBoot分布式Session共享Redis

分布式Web网站一般都会碰到集群session共享问题,小编整理了一套解决方案,内附GitH

项目整体结构


一、maven 依赖

这边依赖的是spring boot 1.5.10 版本,2.x的版本session方法有做修改,不过用法没变

xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

   <modelVersion>4.0.0modelVersion>

   <groupId>com.ituniongroupId>
   <artifactId>spring-boot-redis-sessionartifactId>
   <version>0.0.1-SNAPSHOTversion>
   <packaging>jarpackaging>
   <name>spring-boot-redis-sessionname>
   <description>spring boot redis sessiondescription>
   <parent>
       <groupId>org.springframework.bootgroupId>
       <artifactId>spring-boot-starter-parentartifactId>
       <version>1.5.10.RELEASEversion>
       <relativePath/>
   parent>
   <properties>
       <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
       <project.reporting.outputEncoding>UTF-8project.reporting.outputEncoding>
       <java.version>1.8java.version>
   properties>
   <dependencies>
       <dependency>
           <groupId>org.springframework.bootgroupId>
           <artifactId>spring-boot-starter-webartifactId>
       dependency>
       <dependency>
           <groupId>org.springframework.sessiongroupId>
           <artifactId>spring-session-data-redisartifactId>
       dependency>
       <dependency>
           <groupId>org.springframework.bootgroupId>
           <artifactId>spring-boot-devtoolsartifactId>
           <scope>runtimescope>
       dependency>
   dependencies>
   <build>
       <plugins>
           <plugin>
               <groupId>org.springframework.bootgroupId>
               <artifactId>spring-boot-maven-pluginartifactId>
           plugin>
       plugins>
   build>project>


二、配置内容

默认给项目配置的是debug级别的日志,如果不需要看到可以修改成info或者error

spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
spring.redis.database=0
logging.level.root=info
logging.level.com.itunion=debug


三、程序入口

package com.itunion;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplicationpublic class SpringBootRedisSessionApplication {    
   public static void main(String[] args) {
       SpringApplication.run(SpringBootRedisSessionApplication.class, args);
   }
}


四、实体类

用户类字段简单写了几个,昵称,从哪里登录的,会话编号token

package com.itunion.model;
import java.io.Serializable;
public class User implements Serializable {    
   private String nickName;    
   private String loginBy;    
   private String token;    
   public User(String nickName, String loginBy, String token) {            this.nickName = nickName;        
       this.loginBy = loginBy;        
       this.token = token;
   }  
   // 省略get , set 方法
   @Override
   public String toString() {        
       return "User{" +                "nickName='" + nickName + '\'' +                ", loginBy='" + loginBy + '\'' +                ", token='" + token + '\'' +                '}';
   }
}


五、登录控制层

模拟了普通的账号密码登录,微信code方式登录,从session中获取用户信息,退出登录接口

登录成功需要把sessionId 返回到前端,退出需要调用session的invalidate 方法

package com.itunion.controller;
import com.itunion.model.Result;
import com.itunion.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpSession;
@RestController@RequestMappingpublic class LoginController {    
@Autowired
   private HttpSession session;    
   // 账号密码登录
   @GetMapping(value = "login")    
   public Result login(@RequestParam String username, @RequestParam String password) {
       System.out.println("login username = [" + username + "], password = [" + password + "]");
       User user = new User(username, "app", session.getId());
       session.setAttribute("user", user);        
       // 这里记得把会话ID返回到前端,前端之后请求都需要携带该ID, 可以封装到对象中
       return new Result<>(user);
   }    
   // 微信登录
   @GetMapping(value = "loginByWx")    
   public Result loginByWx(@RequestParam String code) {
       System.out.println("loginByWx.code = [" + code + "]");                // 调用微信API获取OpenId等信息
       User user = new User("Jim", "weixin", session.getId());
       session.setAttribute("user", user);        
       return new Result<>(user);
   }    
   // 退出
   @GetMapping(value = "logout")    
   public Result logout() {
       System.out.println("logout");        
       // session 设置为无效的
       session.invalidate();        
   return new Result();
   }    
   // 使用会话中的信息
   @GetMapping(value = "hello")    
   public Result hello() {
       User user = (User) session.getAttribute("user");
       System.out.println("hello " + user.toString());        
       return new Result<>(user);
   }
}


六、实现ExpiringSession会话类

因为 SessionRepositoryFilter 拦截器自动注入的是 ExpiringSession 类型的Session 如果你只是实现了Session接口将会报错,所以这边实现的 ExpiringSession 接口


又因为 redis 会自动销毁 session ,所以不需要对time相关方法做具体实现

同时用JsonIgnore 忽略不需要序列化的字段防止反序列化失败

package com.itunion.config.session;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.springframework.session.ExpiringSession;
import java.io.Serializable;
import java.util.HashMap;import java.util.Map;
import java.util.Set;
import java.util.UUID;
/**
* 因为Filter 拦截器自动注入的是 ExpiringSession 类型的Session
* 所以这边实现的 ExpiringSession 方法可以不用管,用JsonIgnore 忽略防止反序列化失败
*/
public
class WxRedisSession implements ExpiringSession, Serializable {    
   private String id;    
   private Map sessiOnAttrs= new HashMap();    
   public WxRedisSession() {        
       this(UUID.randomUUID().toString().replace("-", ""));
   }    
   public WxRedisSession(String id) {        
       this.id = id;
   }    
   @Override
   public String getId() {        
       return id;
   }    
   
   @Override

   public T getAttribute(String attributeName) {        
       return (T) this.sessionAttrs.get(attributeName);
   }    
   @JsonIgnore
   @Override
   public Set getAttributeNames() {        
       return this.sessionAttrs.keySet();
   }    
   @Override
   public void setAttribute(String attributeName, Object attributeValue) {        
       if (attributeValue == null) {
           removeAttribute(attributeName);
       } else {            
           this.sessionAttrs.put(attributeName, attributeValue);
       }
   }        
   @Override
   public void removeAttribute(String attributeName) {        
       this.sessionAttrs.remove(attributeName);
   }    
   public void setId(String id) {        
       this.id = id;
   }    
   //   反序列化需要用到get set方法
   public Map getSessionAttrs() {        
       return sessionAttrs;
   }    
   public void setSessionAttrs(Map sessionAttrs) {        this.sessiOnAttrs= sessionAttrs;
   }    
   // redis 会自动销毁 session ,所以不需要使用下面的方法
   @JsonIgnore
   @Override
   public long getCreationTime() {        
       return 0;
   }    
   @JsonIgnore
   @Override
   public void setLastAccessedTime(long lastAccessedTime) {
   }    
   @JsonIgnore
   @Override
   public long getLastAccessedTime() {        
       return 0;
   }    
   @JsonIgnore
   @Override
   public void setMaxInactiveIntervalInSeconds(int interval) {
   }    
   @JsonIgnore
   @Override
   public int getMaxInactiveIntervalInSeconds() {        
       return 0;
   }    
   @JsonIgnore
   @Override
   public boolean isExpired() {        
       return false;
   }
}


七、实现SessionRepository接口会话持久层

这个类主要就是通过RedisTemplate 这个类对session对象的保存、修改、删除等操作

package com.itunion.config.session;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.session.ExpiringSession;
import org.springframework.session.SessionRepository;
import java.util.concurrent.TimeUnit;
/**
* 主要用来管理session对象
*/

public
class WxRedisSessionRepository implements SessionRepository {
   private static Logger log = LoggerFactory.getLogger(WxRedisSessionRepository.class);    
   // redis 连接工具
   private RedisTemplate redisTemplate;    
   /**
    * 如果不为空,将覆盖默认的超时时间,单位秒
    * {@link ExpiringSession#setMaxInactiveIntervalInSeconds(int)}.
    */

   private Integer defaultMaxInactiveInterval;    
   public WxRedisSessionRepository(RedisTemplate redisTemplate) {        
       this.redisTemplate = redisTemplate;
   }    
   public WxRedisSessionRepository(RedisTemplate redisTemplate, Integer defaultMaxInactiveInterval) {        
       this.redisTemplate = redisTemplate;        
       this.defaultMaxInactiveInterval = defaultMaxInactiveInterval;
   }
   @Override    
   public WxRedisSession createSession()
{
       WxRedisSession session = new WxRedisSession();        
       log.debug("createSession " + session.getId());        
       return session;
   }
   @Override    
   public void save(WxRedisSession session)
{        
       log.debug("save " + session.getId());
       redisTemplate.opsForValue().set(session.getId(), session, defaultMaxInactiveInterval, TimeUnit.SECONDS);
   }
   @Override    
   public WxRedisSession getSession(String id)
{        
       log.debug("getSession " + id);        
       if (redisTemplate.hasKey(id)) {            
           return (WxRedisSession) redisTemplate.opsForValue().get(id);
       } else {            
           return null;
       }
   }
   @Override    
   public void delete(String id)
{        
       log.debug("delete " + id);
       redisTemplate.delete(id);
   }    
   public void setDefaultMaxInactiveInterval(Integer defaultMaxInactiveInterval) {        
       this.defaultMaxInactiveInterval = defaultMaxInactiveInterval;
   }
}


八、自定义会话策略 HttpSessionStrategy

这个类可以理解为一个请求过来了,程序从哪里去拿我需要的会话编号,主要用到的方法就是 getRequestedSessionId

package com.itunion.config.session;
import org.springframework.session.Session;
import org.springframework.session.web.http.HttpSessionStrategy;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
// 会话策略, 比如会话的标识从哪里获取
public
class WxHttpSessionStrategy implements HttpSessionStrategy {      private String name;    
       public WxHttpSessionStrategy() {        
       this("token");
   }    
   public WxHttpSessionStrategy(String name) {        
       this.name = name;
   }    
   @Override
   public String getRequestedSessionId(HttpServletRequest request) {        // 从header 中获取
       String token = request.getHeader(name);        
       if (token != null) return token;        
       // 从请求参数中获取
       token = request.getParameter(name);        
       if (token != null) return token;        
       // 增加自己的获取方式 比如:COOKIE
       return null;
   }    
   @Override
   public void onNewSession(Session session, HttpServletRequest request, HttpServletResponse response) {
       response.setHeader(this.name, session.getId());
   }    
   @Override
   public void onInvalidateSession(HttpServletRequest request, HttpServletResponse response) {
       response.setHeader(this.name, "");
   }    
   public void setName(String name) {        
       this.name = name;
   }
}


九、Redis 配置

这里我重新设置 StringRedisTemplate 值的序列化方式,把value内容序列化为json字符串
如果你希望只保存字符串的内容,可以只返回StringRedisTemplate对象

package com.itunion.config;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
@Configurationpublic class RedisConfig {    
   @Value("${spring.redis.host}")    
   private String host;    
   @Value("${spring.redis.port}")    
   private Integer port;    
   @Value("${spring.redis.password}")    
   private String password;    
   @Value("${spring.redis.database}")    
   private Integer database;    @Bean
   RedisTemplate redisTemplate(RedisConnectionFactory connectionFactory) {
       RedisTemplate redisTemplate = new StringRedisTemplate(connectionFactory);        
       // 重新设置 StringRedisTemplate 值的序列化方式,把value内容序列化为json字符串
       // 如果你希望只保存字符串的内容,可以吧下面的内容去掉只用StringRedisTemplate
       Jackson2JsonRedisSerializer redisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);
       ObjectMapper om = new ObjectMapper();
       om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
       om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
       redisSerializer.setObjectMapper(om);
       redisTemplate.setValueSerializer(redisSerializer);        
       // 应用设置
       redisTemplate.afterPropertiesSet();        
       return redisTemplate;
   }    
   @Bean
   RedisConnectionFactory connectionFactory() {        
   // 建立redis 连接
       JedisConnectionFactory factory = new JedisConnectionFactory();
       factory.setHostName(host);
       factory.setPort(port);
       factory.setPassword(password);
       factory.setDatabase(database);        
       return factory;
   }
}


十、启用配置

这里需要使用 @EnableSpringHttpSession 注解

package com.itunion.config.session;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.session.config.annotation.web.http.EnableSpringHttpSession;
import org.springframework.session.web.http.HttpSessionStrategy;
@Configuration@EnableSpringHttpSessionpublic class HttpSessionConfig {    
   //session策略,这里默认会从头部,请求参数中获取内容
   // 这里的token 可以自定义,主要用于请求参数的名字
   @Bean
   HttpSessionStrategy httpSessionStrategy() {        
       return new WxHttpSessionStrategy("token");
   }    
   @Bean
   WxRedisSessionRepository sessionRepository(RedisTemplate redisTemplate) {        
       return new WxRedisSessionRepository(redisTemplate, 3600);
   }
}

启动Redis服务


启动项目

模拟移动端测试

  1. 模拟登录操作 http://localhost:8080/loginByWx?code=123

{
   "code":100,"message":null,"result":{"nickName":"Jim","loginBy":"weixin","token":"0eab2c62e185400489f51c060ed1360f"},"timestamp":1528954812490}

看下redis 的数据


  1. 模拟普通请求

token参数要取登录成功返回的token值
http://localhost:8080/hello?token=0eab2c62e185400489f51c060ed1360f

  1. 模拟退出
    http://localhost:8080/logout?token=0eab2c62e185400489f51c060ed1360f

redis 中对应的token也会被删除


总结

在本篇文章当中我们看到原先写的 HttpFilter 和 HttpServlet 在 Spring boot 中可以方便快捷的配置进来,对于我们老的项目的支持还是不错的


更多精彩内容

架构实战篇(一):Spring Boot 整合MyBatis

架构实战篇(二):Spring Boot 整合Swagger2

架构实战篇(三):Spring Boot 整合MyBatis()

架构实战篇(四):Spring Boot 整合 Thymeleaf

架构实战篇(五):Spring Boot 表单验证和异常处理

架构实战篇(六):Spring Boot RestTemplate的使用

架构实战篇(七):Spring Boot Data JPA 快速入门

架构实战篇(八):Spring Boot 集成 Druid 数据源监控


关注我们

Git源码地址:https://github.com/qiaohhgz/spring-boot-redis-session.git



推荐阅读
  • Spring框架中的面向切面编程(AOP)技术详解
    面向切面编程(AOP)是Spring框架中的关键技术之一,它通过将横切关注点从业务逻辑中分离出来,实现了代码的模块化和重用。AOP的核心思想是将程序运行过程中需要多次处理的功能(如日志记录、事务管理等)封装成独立的模块,即切面,并在特定的连接点(如方法调用)动态地应用这些切面。这种方式不仅提高了代码的可维护性和可读性,还简化了业务逻辑的实现。Spring AOP利用代理机制,在不修改原有代码的基础上,实现了对目标对象的增强。 ... [详细]
  • 本文介绍如何在 Android 中自定义加载对话框 CustomProgressDialog,包括自定义 View 类和 XML 布局文件的详细步骤。 ... [详细]
  • 本文探讨了利用Java实现WebSocket实时消息推送技术的方法。与传统的轮询、长连接或短连接等方案相比,WebSocket提供了一种更为高效和低延迟的双向通信机制。通过建立持久连接,服务器能够主动向客户端推送数据,从而实现真正的实时消息传递。此外,本文还介绍了WebSocket在实际应用中的优势和应用场景,并提供了详细的实现步骤和技术细节。 ... [详细]
  • 掌握Android UI设计:利用ZoomControls实现图片缩放功能
    本文介绍了如何在Android应用中通过使用ZoomControls组件来实现图片的缩放功能。ZoomControls提供了一种简单且直观的方式,让用户可以通过点击放大和缩小按钮来调整图片的显示大小。文章详细讲解了ZoomControls的基本用法、布局设置以及与ImageView的结合使用方法,适合初学者快速掌握Android UI设计中的这一重要功能。 ... [详细]
  • php更新数据库字段的函数是,php更新数据库字段的函数是 ... [详细]
  • 在Java Web服务开发中,Apache CXF 和 Axis2 是两个广泛使用的框架。CXF 由于其与 Spring 框架的无缝集成能力,以及更简便的部署方式,成为了许多开发者的首选。本文将详细介绍如何使用 CXF 框架进行 Web 服务的开发,包括环境搭建、服务发布和客户端调用等关键步骤,为开发者提供一个全面的实践指南。 ... [详细]
  • 在本文中,我们将为 HelloWorld 项目添加视图组件,以确保控制器返回的视图路径能够正确映射到指定页面。这一步骤将为后续的测试和开发奠定基础。首先,我们将介绍如何配置视图解析器,以便 SpringMVC 能够识别并渲染相应的视图文件。 ... [详细]
  • 本文探讨了资源访问的学习路径与方法,旨在帮助学习者更高效地获取和利用各类资源。通过分析不同资源的特点和应用场景,提出了多种实用的学习策略和技术手段,为学习者提供了系统的指导和建议。 ... [详细]
  • 在处理遗留数据库的映射时,反向工程是一个重要的初始步骤。由于实体模式已经在数据库系统中存在,Hibernate 提供了自动化工具来简化这一过程,帮助开发人员快速生成持久化类和映射文件。通过反向工程,可以显著提高开发效率并减少手动配置的错误。此外,该工具还支持对现有数据库结构进行分析,自动生成符合 Hibernate 规范的配置文件,从而加速项目的启动和开发周期。 ... [详细]
  • 网站访问全流程解析
    本文详细介绍了从用户在浏览器中输入一个域名(如www.yy.com)到页面完全展示的整个过程,包括DNS解析、TCP连接、请求响应等多个步骤。 ... [详细]
  • 本教程详细介绍了如何使用 Spring Boot 创建一个简单的 Hello World 应用程序。适合初学者快速上手。 ... [详细]
  • 原文网址:https:www.cnblogs.comysoceanp7476379.html目录1、AOP什么?2、需求3、解决办法1:使用静态代理4 ... [详细]
  • 如何将TS文件转换为M3U8直播流:HLS与M3U8格式详解
    在视频传输领域,MP4虽然常见,但在直播场景中直接使用MP4格式存在诸多问题。例如,MP4文件的头部信息(如ftyp、moov)较大,导致初始加载时间较长,影响用户体验。相比之下,HLS(HTTP Live Streaming)协议及其M3U8格式更具优势。HLS通过将视频切分成多个小片段,并生成一个M3U8播放列表文件,实现低延迟和高稳定性。本文详细介绍了如何将TS文件转换为M3U8直播流,包括技术原理和具体操作步骤,帮助读者更好地理解和应用这一技术。 ... [详细]
  • 本文介绍了一种自定义的Android圆形进度条视图,支持在进度条上显示数字,并在圆心位置展示文字内容。通过自定义绘图和组件组合的方式实现,详细展示了自定义View的开发流程和关键技术点。示例代码和效果展示将在文章末尾提供。 ... [详细]
  • 在处理 XML 数据时,如果需要解析 `` 标签的内容,可以采用 Pull 解析方法。Pull 解析是一种高效的 XML 解析方式,适用于流式数据处理。具体实现中,可以通过 Java 的 `XmlPullParser` 或其他类似的库来逐步读取和解析 XML 文档中的 `` 元素。这样不仅能够提高解析效率,还能减少内存占用。本文将详细介绍如何使用 Pull 解析方法来提取 `` 标签的内容,并提供一个示例代码,帮助开发者快速解决问题。 ... [详细]
author-avatar
欧阳3721_208
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有