Nginx整合tomcat和redis实现session共享

通常情况下,Tomcat、Jetty等Servlet容器,会默认将Session保存在内存中。如果是单个服务器实例的应用,将Session保存在服务器内存中是一个非常好的方案。但是这种方案有一个缺点,就是不利于扩展。

​ 目前越来越多的应用采用分布式部署,用于实现高可用性和负载均衡等。那么问题来了,如果将同一个应用部署在多个服务器上通过负载均衡对外提供访问,如何实现Session共享?

​ 实际上实现Session共享的方案很多,其中一种常用的就是使用Tomcat、Jetty等服务器提供的Session共享功能,将Session的内容统一存储在一个数据库(如MySQL)或缓存(如Redis)中。

第一步,添加支持

​ 如果是动态web项目,需要拷贝如下jar包:

​ commons-pool2-2.4.2.jar

​ jedis-2.9.0.jar

​ spring-data-redis-1.6.0.RELEASE.jar

​ spring-session-1.1.1.RELEASE.jar

​ 如果是maven项目,在pom.xml中添加如下依赖:

<dependency>
    <groupId>redis.clientsgroupId>
    <artifactId>jedisartifactId>
    <version>2.9.0version>
dependency>
        
<dependency>
    <groupId>org.apache.commonsgroupId>
    <artifactId>commons-pool2artifactId>
    <version>2.4.2version>
dependency>
        
<dependency>
    <groupId>org.springframework.datagroupId>
    <artifactId>spring-data-redisartifactId>
    <version>1.6.0.RELEASEversion>
dependency>
  
<dependency>
    <groupId>org.springframework.sessiongroupId>
    <artifactId>spring-sessionartifactId>
    <version>1.1.1.RELEASEversion>
dependency>

第二步,配置过滤器

​ 在web.xml中加入以下过滤器,注意如果web.xml中有其他过滤器,一般情况下Spring Session的过滤器要放在第一位,代码如下:



<filter>
    <filter-name>springSessionRepositoryFilterfilter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxyfilter-class>
filter>
<filter-mapping>
    <filter-name>springSessionRepositoryFilterfilter-name>
    <url-pattern>/*

第三步,spring配置文件

​ 先准备redis.properties配置文件,文件内容如下:


redis.host=10.3.12.250
redis.port=6379
redis.pass=123
redis.maxIdle=300
redis.maxActive=600
redis.maxWait=1000
redis.testOnBorrow=true

​ 然后在spring配置文件中引入redis.properties.

​ 引入后,在spring 配置文件中配置如下:


<bean class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">
    <property name="maxInactiveIntervalInSeconds" value="3600">property>
bean>
  
<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">  
    <property name="maxIdle" value="${redis.maxIdle}" />  
    <property name="maxTotal" value="${redis.maxActive}" />  
    <property name="maxWaitMillis" value="${redis.maxWait}" />  
    <property name="testOnBorrow" value="${redis.testOnBorrow}" />  
bean>  
      
  
<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">  
    <property name="hostName" value="${redis.host}"/>  
    <property name="port" value="${redis.port}"/>  
    <property name="password" value="${redis.pass}"/>  
    <property name="poolConfig" ref="poolConfig"/>  
bean>  

​ 只需要以上简单的配置,至此为止即已经完成Web应用Session统一存储在Redis中

你可能感兴趣的:(Redis)