SpringBoot2.x 整合Spring-Session實現Session共享

指尖逆蒼穹發表於2019-07-21

SpringBoot2.x 整合Spring-Session實現Session共享

1.前言

發展至今,已經很少還存在單服務的應用架構,不說都使用分散式架構部署, 至少也是多點高可用服務。在多個伺服器的情況下,Seession共享就是必須面對的問題了。

解決Session共享問題,大多數人的思路都是比較清晰的, 將需要共享的資料存在某個公共的服務中,如快取。很多人都採用的Redis,手動將Session存在Redis,需要使用時,再從Redsi中讀取資料。毫無疑問,這種方案是可行的,只是在手動操作的工作量確實不少。

LZ在這裡採用的Spring-Session來實現。它使用代理過濾器,將Session操作攔截,自動將資料同步到Redis中,以及自動從Redis讀取資料。從此,操作分散式的Session就像操作單服務的Session一樣,可以為所欲為了。

2.實踐
2.1 建立工程

使用idea建立SpringBoot工程, 新增元件Web、Spring Session和Redis。 我這裡idea是2019版本,SpringBoot是2.1.6。

SpringBoot2.x 整合Spring-Session實現Session共享

pom.xml檔案

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-data-redis</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
2.2 配置Redis
spring:
  redis:
      port: 6379
      password: xofcO46Fy
      host: 10.17.153.104
server:
  port: 9090
2.3 測試

程式碼實現

package com.xiaoqiang.sessionshare.web;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpSession;

/**
 * SessionShareController <br>
 * 〈session共享控制器〉
 *
 * @author XiaoQiang
 * @create 2019-7-6
 * @since 1.0.0
 */
@RestController
@RequestMapping(value = "/session")
public class SessionShareController {

    @Value("${server.port}")
    Integer port;


    @GetMapping(value = "/set")
    public String set(HttpSession session){
        session.setAttribute("user","wangwq8");
        return String.valueOf(port);
    }

    @GetMapping(value = "get")
    public String get(HttpSession session){
        return "使用者:"+session.getAttribute("user")+",埠:"+port;
    }
}

maven package打包釋出到伺服器伺服器,過程略。

分別使用9090 9091埠啟動專案。

nohup java -jar sessionshare-0.0.1-SNAPSHOT.jar --server.port=9090 &

nohup java -jar sessionshare-0.0.1-SNAPSHOT.jar --server.port=9091 &

先訪問http://10.17.158.136:9090/session/set,在9090這個服務的session儲存使用者變數;

SpringBoot2.x 整合Spring-Session實現Session共享

然後再訪問http://10.17.158.136:9091/session/get,從session中獲取得到使用者資訊。

SpringBoot2.x 整合Spring-Session實現Session共享

從上面樣例,可以看出session已經實現了共享,只是測試過程是需要手動切換服務。為了更好地模式真實專案環境,為此,我們配置Nginx,來進行測試。

2.4 配置Nginx

在Nginx安裝目錄conf下,編輯nginx.conf,

 upstream tomcatServer {
        server 10.17.158.136:9092 weight=1;
        server 10.17.158.136:9091 weight=2;
        }

    server {
        listen       9000;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass http://tomcatServer;
            proxy_redirect default;
            #root   html;
            #index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

在這裡我們只需要配置簡單的負載均衡,埠是9000。所有localhost:9000都會按一定策略(這裡是按權重分發,配置weight=1一樣,隨機分發的;nginx預設是輪詢策略)分發到上游服務upstream配置的服務上。

配置完成後,啟動Nginx;

/apps/test/software/nginx/nginx-1.6.2/sbin/nginx

首先訪問http://10.17.158.136:9000/session/set,向seesion中儲存資料,從下圖中可知9090埠的服務處理了該請求。
SpringBoot2.x 整合Spring-Session實現Session共享

然後在訪問/get請求,是從9091埠的服務獲取得到的使用者資訊,至此,測試完成。

SpringBoot2.x 整合Spring-Session實現Session共享

3.總結

本文主要是Spring Session的簡單使用,從上面可以看出,除了引入了Spring Session的jar, 其他方面,不管是程式碼還是配置,都與之沒有什麼關聯,就相當於在操作最常用的HttpSession,在實際專案中用起來也是相當方便。

樣例已上傳github,地址:https://github.com/lanxuan826/sample-library/tree/master/sessionshare,有興趣可下載測試。

另外,此文是從鬆哥部落格中得到啟示,在此推薦:https://blog.csdn.net/u012702547/article/list/2?

,還推薦一篇關於Spring Session原理的部落格:https://blog.csdn.net/u010648555/article/details/79491988

相關文章