spring boot redis 使用 2
寧國網(wǎng)站建設公司成都創(chuàng)新互聯(lián)公司,寧國網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為寧國近1000家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\成都外貿網(wǎng)站建設公司要多少錢,請找那個售后服務好的寧國做網(wǎng)站的公司定做!
使用redis共享session
分布式系統(tǒng)中,Session 共享有很多的解決方案,其中托管到緩存中應該是最常用的方案之一
pom文件中引入依賴
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數(shù)據(jù)庫索引(默認為0)
spring.redis.database=4
#連接池最大連接數(shù)(使用負值表示沒有限制)
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----