1. 程式人生 > 程式設計 >SpringBoot Session共享實現圖解

SpringBoot Session共享實現圖解

這篇文章主要介紹了SpringBoot Session共享實現圖解,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

一、建立專案並匯入依賴

<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-security</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>

二、相關配置和程式碼

Application.properies

spring.redis.database=0
spring.redis.password=fernfei
spring.redis.host=192.168.21.130
spring.redis.port=6379
server.port=8080

Controller層

三、打包測試

雙擊打包,注意打包時把test跳過,點那個閃電就可以跳過測試

在cmd中執行第一個專案

使用新版redis必須匯入security,security訪問專案時需要登陸,使用者名稱user密碼

控制檯複製

再在cmd執行第二個專案

效果圖

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。