溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何用spring+redis實現(xiàn)session共享

發(fā)布時間:2021-07-02 16:02:12 來源:億速云 閱讀:169 作者:chen 欄目:大數(shù)據(jù)

本篇內(nèi)容介紹了“如何用spring+redis實現(xiàn)session共享”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

使用Nginx+Tomcat進行負(fù)載均衡時,希望使用輪詢方式進行負(fù)載。但是如果使用輪詢方式的話,可能會訪問不同的Tomcat,此時如果不進行Session共享,則相當(dāng)于是一個新的Session。就比如現(xiàn)有系統(tǒng)都是需要認(rèn)證登錄的系統(tǒng),如果沒有Session共享,則會導(dǎo)致用戶退出登錄

目前實現(xiàn) session 共享的方式有以下幾種:

1、使用Tomcat內(nèi)置的Session復(fù)制方案
   只適合Tomcat小集群,不適合大集群,因為session復(fù)制是all to all的方式
2、使用第三方(個人)基于Tomcat實現(xiàn)的Session管理
    第三方支持,支持力度不夠,尤其是不能提供對Tomcat8的支持
3、使用Spring Session實現(xiàn)

本文介紹的是第三種解決辦法,即使用 spring session + redis 的方案

一、引入 pom 

<!-- 使用Spring Session來解決Session共享問題  -->
<dependency>
  <groupId>org.springframework.session</groupId>
  <artifactId>spring-session-data-redis</artifactId>
  <version>1.3.0.RELEASE</version>
  <type>pom</type>
</dependency>
<dependency>
  <groupId>biz.paluch.redis</groupId>
  <artifactId>lettuce</artifactId>
  <version>3.5.0.Final</version>
</dependency>
<dependency>
  <groupId>redis.clients</groupId>
  <artifactId>jedis</artifactId>
  <version>2.9.0</version>
</dependency>

二、配置 web.xml

在web.xml中加入以下過濾器,注意如果web.xml中有其他過濾器,一般情況下Spring Session的過濾器要放在第一位

<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-mvc.xml

<context:property-placeholder location="classpath:redis.properties" ignore-unresolvable="true"/>

<bean id="redisHttpSessionConfiguration"
      class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">
    <property name="maxInactiveIntervalInSeconds" value="600"/>
</bean>

<bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
    <property name="maxTotal" value="50" />
    <property name="maxIdle" value="10" />
    <property name="testOnBorrow" value="false" />
</bean>

<bean id="jedisConnectionFactory"
      class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" destroy-method="destroy">
    <property name="hostName" value="${redis.ip}"/>
    <property name="port" value="${redis.port}"/>
    <property name="password" value="${redis.password}" />
    <property name="timeout" value="3000"/>
    <property name="usePool" value="true"/>
    <property name="poolConfig" ref="jedisPoolConfig"/>
</bean>

四、編輯 redis.properties

redis.ip=127.0.0.1
redis.port=6379
redis.password=123456

五、測試代碼

寫一個 請求方法 轉(zhuǎn)發(fā)到 session_share.jsp

@RequestMapping("/session")
public String session(HttpSession session, HttpServletRequest request){
    request.setAttribute("id", request.getSession().getId());
    return "session_share";
}

接著 編寫 session_share.jsp

tomcat1
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>session共享</title>
</head>
<body>

1 我的session:${id}
<br>sessionid=<%=session.getId()%>

</body>
</html>

-------------------------------------------------------

tomcat2
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>session共享</title>
</head>
<body>

2 我的session:${id}
<br>sessionid=<%=session.getId()%>

</body>
</html>

六、配置 nginx 負(fù)載均衡

upstream load_balance_server {
        #weigth參數(shù)表示權(quán)值,權(quán)值越高被分配到的幾率越大
        server 192.168.0.131:8080   weight=1;
        server 192.168.0.167:8090   weight=1;
    }
		
	server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
              proxy_pass http://load_balance_server;
              index  dashboard index;
              proxy_set_header Host       $http_host;
              proxy_set_header X-Real-IP $remote_addr;
              proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
              proxy_set_header X-Forwarded-Proto $scheme;
	    } 
	 }

nginx 所在 IP 為 192.168.0.131

連續(xù)多次訪問  192.168.0.131:80/session     頁面上的 sessionId  沒有發(fā)生變化 , 1 和 2 在不停切換

“如何用spring+redis實現(xiàn)session共享”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI