中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

spring boot 使用 redis session

發布時間:2020-07-02 02:13:49 來源:網絡 閱讀:1177 作者:北極冷冷冷 欄目:編程語言

spring boot redis 使用 2

使用redis共享session

分布式系統中,Session 共享有很多的解決方案,其中托管到緩存中應該是最常用的方案之一

  1. pom文件中引入依賴

    <!-- redis -->
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>
    <!-- security -->
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
    </dependency>

    <!-- redis session -->
    <dependency>
    <groupId>org.springframework.session</groupId>
    <artifactId>spring-session-data-redis</artifactId>
    </dependency>

spring session 中默認加入了 security 不添加 security 依賴會拋異常:
java.lang.ClassNotFoundException: org.springframework.security.web.authentication.RememberMeServices

2.redis 配置

#redis配置
#Redis服務器地址
spring.redis.host=192.168.5.10
#Redis服務器連接端口
spring.redis.port=6379
#Redis數據庫索引(默認為0)
spring.redis.database=4
#連接池最大連接數(使用負值表示沒有限制)
spring.redis.jedis.pool.max-active=50
#連接池最大阻塞等待時間(使用負值表示沒有限制)
spring.redis.jedis.pool.max-wait=3000
#連接池中的最大空閑連接
spring.redis.jedis.pool.max-idle=20
#連接池中的最小空閑連接
spring.redis.jedis.pool.min-idle=2
#連接超時時間(毫秒)
spring.redis.timeout=5000

spring.session.store-type=redis

3.在啟動類中開啟 redis session

@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
@MapperScan("com.example.demo.dao.mybatis")
@EnableCaching
@EnableRedisHttpSession
public class DemoApplication 

@SpringBootApplication(exclude = {SecurityAutoConfiguration.class}) 去掉 security 權限認證自動裝配
不去掉會引起權限不足

----end----

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

独山县| 佳木斯市| 蒲江县| 慈溪市| 淳安县| 宁远县| 罗城| 德安县| 陵川县| 泰安市| 吉木萨尔县| 阜平县| 连平县| 拜泉县| 富宁县| 临湘市| 新津县| 民乐县| 庆元县| 淮北市| 明光市| 马尔康县| 黎平县| 保山市| 天柱县| 安陆市| 利辛县| 林甸县| 阳高县| 南开区| 长宁县| 灌云县| 廊坊市| 得荣县| 辽源市| 安岳县| 上饶市| 客服| 永福县| 镇原县| 宜阳县|