spring boot与redis 实现session共享教程
如果大家对spring boot不是很了解,大家可以参考下面两篇文章。
这次带来的是spring boot + redis 实现session共享的教程。
在spring boot的文档中,告诉我们添加@enableredishttpsession来开启spring session支持,配置如下:
@configuration @enableredishttpsession public class redissessionconfig { }
而@enableredishttpsession这个注解是由spring-session-data-redis提供的,所以在pom.xml文件中添加:
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-redis</artifactid> </dependency> <dependency> <groupid>org.springframework.session</groupid> <artifactid>spring-session-data-redis</artifactid> </dependency>
接下来,则需要在application.properties中配置redis服务器的位置了,在这里,我们就用本机:
spring.redis.host=localhost spring.redis.port=6379
这样以来,最简单的spring boot + redis实现session共享就完成了,下面进行下测试。
首先我们开启两个tomcat服务,端口分别为8080和9090,在application.properties中进行设置【下载地址】 :
server.port=8080
接下来定义一个controller:
@restcontroller @requestmapping(value = "/admin/v1") public class quickrun { @requestmapping(value = "/first", method = requestmethod.get) public map<string, object> firstresp (httpservletrequest request){ map<string, object> map = new hashmap<>(); request.getsession().setattribute("request url", request.getrequesturl()); map.put("request url", request.getrequesturl()); return map; } @requestmapping(value = "/sessions", method = requestmethod.get) public object sessions (httpservletrequest request){ map<string, object> map = new hashmap<>(); map.put("sessionid", request.getsession().getid()); map.put("message", request.getsession().getattribute("map")); return map; } }
启动之后进行访问测试,首先访问8080端口的tomcat,返回 获取【下载地址】 :
{"request url":"http://localhost:8080/admin/v1/first"}
接着,我们访问8080端口的sessions,返回:
{"sessionid":"efcc85c0-9ad2-49a6-a38f-9004403776b5","message":http://localhost:8080/admin/v1/first}
最后,再访问9090端口的sessions,返回:
{"sessionid":"efcc85c0-9ad2-49a6-a38f-9004403776b5","message":http://localhost:8080/admin/v1/first}
可见,8080与9090两个服务器返回结果一样,实现了session的共享
如果此时再访问9090端口的first的话,首先返回:
{"request url":"http://localhost:9090/admin/v1/first"}
而两个服务器的sessions都是返回:
{"sessionid":"efcc85c0-9ad2-49a6-a38f-9004403776b5","message":"http://localhost:9090/admin/v1/first"}
通过spring boot + redis来实现session的共享非常简单,而且用处也极大,配合nginx进行负载均衡,便能实现分布式的应用了。
本次的redis并没有进行主从、读写分离等等配置(_(:з」∠)_其实是博主懒,还没尝试过.......)
而且,nginx的单点故障也是我们应用的障碍......以后可能会有对此次博客的改进版本,比如使用zookeeper进行负载均衡,敬请期待。
好了,到此结束吧,以上所述是小编给大家介绍的spring boot与redis 实现session共享教程,希望对大家有所帮助
上一篇: html图像标签、绝对路径和相对路径
下一篇: mysql提示Changed limits: max_open_files: 2048 max_connections: 1910 table_cache: 64的解决
推荐阅读
-
spring boot与redis 实现session共享教程
-
学习Spring-Session+Redis实现session共享的方法
-
学习Spring-Session+Redis实现session共享的方法
-
Spring boot集成spring session实现session共享的方法
-
Spring Boot高级教程之使用Redis实现session共享
-
Spring整合redis(jedis)实现Session共享的过程
-
详解基于Spring Boot/Spring Session/Redis的分布式Session共享解决方案
-
Spring Boot项目利用Redis实现session管理实例
-
Spring整合redis(jedis)实现Session共享的过程
-
详解基于Spring Boot/Spring Session/Redis的分布式Session共享解决方案