q66262 发表于 2017-12-21 07:05:20

Spring Session + Redis实现分布式Session共享

  通常情况下,Tomcat、Jetty等Servlet容器,会默认将Session保存在内存中。如果是单个服务器实例的应用,将Session保存在服务器内存中是一个非常好的方案。但是这种方案有一个缺点,就是不利于扩展。
  目前越来越多的应用采用分布式部署,用于实现高可用性和负载均衡等。那么问题来了,如果将同一个应用部署在多个服务器上通过负载均衡对外提供访问,如何实现Session共享?
  实际上实现Session共享的方案很多,其中一种常用的就是使用Tomcat、Jetty等服务器提供的Session共享功能,将Session的内容统一存储在一个数据库(如MySQL)或缓存(如Redis)中。
  本文主要介绍另一种实现Session共享的方案,不依赖于Servlet容器,而是Web应用代码层面的实现,直接在已有项目基础上加入Spring Session框架来实现Session统一存储在Redis中。如果你的Web应用是基于Spring框架开发的,只需要对现有项目进行少量配置,即可将一个单机版的Web应用改为一个分布式应用,由于不基于Servlet容器,所以可以随意将项目移植到其他容器。

Maven依赖
  

    <dependency>  <groupId>redis.clients</groupId>
  <artifactId>jedis</artifactId>
  <version>2.7.2</version>
  </dependency>
  <dependency>
  <groupId>org.springframework.session</groupId>
  <artifactId>spring-session-data-redis</artifactId>
  <version>1.2.2.RELEASE</version>
  </dependency>
  


配置Filter
  在web.xml中加入以下过滤器,注意如果web.xml中有其他过滤器,一般情况下Spring Session的过滤器要放在第一位。ContextLoaderListener是必须要添加的,不然启动会报错。
  

<context-param>  <param-name>contextConfigLocation</param-name>
  <param-value>classpath*:spring/*.xml</param-value>
  </context-param>
  <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <filter>
  <filter-name>springSessionRepositoryFilter</filter-name>
  <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  </filter>
  <filter-mapping>
  <filter-name>springSessionRepositoryFilter</filter-name>
  <url-pattern>/*</url-pattern>
  </filter-mapping>
  


Spring配置文件
  spring-redis.xml
  

<?xml version="1.0" encoding="UTF-8"?>  
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
  xsi:schemaLocation="
  http://www.springframework.org/schema/beans
  http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  ">
  

  <bean
  p:maxIdle="300" p:maxWaitMillis="1000" p:testOnBorrow="true">
  </bean>
  

  <!-- 添加RedisHttpSessionConfiguration用于session共享 -->
  <bean/>
  

  <bean
  p:hostName="192.168.1.143" p:port="6379" p:password="123456" p:poolConfig-ref="poolConfig"
  p:usePool="true"
  p:database="1"
  p:timeout="3000"/>
  

  
</beans>
  

  spring-mvc.xml配置文件增加以下配置,就是把上面的配置文件导入进去
  

<import resource="classpath:redis/spring-redis.xml"/>  

  只需要以上简单的配置,至此为止即已经完成Web应用Session统一存储在Redis中,可以说是及其简单。
  参考网站:
  redis搭建: http://xxgblog.com/2016/09/29/spring-session-redis/ 按照此方法有jar依赖冲突按照评论的去掉那个依赖即可
  web.xml配置报错:http://blog.csdn.net/zuoyexingchennn/article/details/50426869
页: [1]
查看完整版本: Spring Session + Redis实现分布式Session共享