springsession 实现session 共享
生活随笔
收集整理的這篇文章主要介紹了
springsession 实现session 共享
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
首先加入依賴
1 2 <dependency> 3 <groupId>org.springframework.session</groupId> 4 <artifactId>spring-session</artifactId> 5 </dependency> 6 <dependency> 7 <groupId>org.springframework.boot</groupId> 8 <artifactId>spring-boot-starter-redis</artifactId> 9 </dependency>
其次:application.properties
#server server.port=9090 server.address=localhost #redis spring.redis.host=192.168.1.10 spring.redis.port=6379
@Configuration @EnableRedisHttpSession public class RedisSessionConfig { @Beanpublic static ConfigureRedisAction configureRedisAction() {return ConfigureRedisAction.NO_OP;}}
否則會報錯: error creating bean with name enablerediskeyspacenotificationsinitializer
在Linus中 輸入命令 redis-cli config set notify-keyspace-events Egx 來開啟開啟:notify-keyspace-events Egx
具體內容請參考:http://www.cnblogs.com/mengmeng89012/p/5519698.html
? 最終結果:
1 2 <dependency> 3 <groupId>org.springframework.session</groupId> 4 <artifactId>spring-session</artifactId> 5 </dependency> 6 <dependency> 7 <groupId>org.springframework.boot</groupId> 8 <artifactId>spring-boot-starter-redis</artifactId> 9 </dependency>
其次:application.properties
#server server.port=9090 server.address=localhost #redis spring.redis.host=192.168.1.10 spring.redis.port=6379
?
插入代碼:@Configuration @EnableRedisHttpSession public class RedisSessionConfig { @Beanpublic static ConfigureRedisAction configureRedisAction() {return ConfigureRedisAction.NO_OP;}}
否則會報錯: error creating bean with name enablerediskeyspacenotificationsinitializer
在Linus中 輸入命令 redis-cli config set notify-keyspace-events Egx 來開啟開啟:notify-keyspace-events Egx
具體內容請參考:http://www.cnblogs.com/mengmeng89012/p/5519698.html
Redis從3.2開始加強安全管理,如果redis沒有設置密碼,那么redis客戶端只能從本地進行訪問,如果是從其他機器連接過來訪問的,就會報錯
我這邊沒有設置密碼 , 所以須關閉保護模式? 最終結果:
轉載于:https://www.cnblogs.com/zhao-blog/p/6669337.html
總結
以上是生活随笔為你收集整理的springsession 实现session 共享的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 前向渲染路径细节 Forward Ren
- 下一篇: SVG 基础知识 回顾