spring Session 提供了一套用于管理用户 session 信息的API和实现。
Spring Session为企业级Java应用的session管理带来了革新,使得以下的功能更加容易实现:
Spring-Boot集成Spring session并存入redis
添加maven依赖
Redis的相关依赖可以看之前的内容,这里需要增加如下依赖。
<dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session</artifactId> </dependency>
Java代码实现
增加HttpSessionConfig。
package com.core.config; import org.springframework.context.annotation.Bean; import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession; import org.springframework.session.web.http.HeaderHttpSessionStrategy; import org.springframework.session.web.http.HttpSessionStrategy; @EnableRedisHttpSession(maxInactiveIntervalInSeconds = 100, redisNamespace = "xxxx") public class HttpSessionConfig { @Bean public HttpSessionStrategy httpSessionStrategy() { return new HeaderHttpSessionStrategy(); } }
其中注解 EnableRedisHttpSession 创建了一个名为springSessionRepositoryFilter的Spring Bean,该Bean实现了Filter接口。该filter负责通过 Spring Session 替换HttpSession从哪里返回。这里Spring Session是通过 redis 返回。
类中的方法 httpSessionStrategy(),用来定义Spring Session的 HttpSession 集成使用HTTP的头来取代使用 cookie 传送当前session信息。如果使用下面的代码,则是使用cookie来传送 session 信息。
@Bean public HttpSessionStrategy httpSessionStrategy() { return new CookieHttpSessionStrategy(); }
使用HTTP的头,会看到如下信息
-- response -- 200 x-auth-token: 4792331e-44c2-4285-a9d1-ebabf0e72251 Content-Type: text/html;charset=UTF-8 Content-Length: 75 Date: Mon, 09 Jan 2017 10:14:00 GMT 8e107efb-bf1e-4a55-b896-c97f629c8e40 : 4792331e-44c2-4285-a9d1-ebabf0e72251
使用cookie,会看到如下信息
-- response -- 200 Set-Cookie: SESSION=4792331e-44c2-4285-a9d1-ebabf0e72251;path=/;HttpOnly Content-Type: text/html;charset=UTF-8 Content-Length: 75 Date: Mon, 09 Jan 2017 10:47:37 GMT
测试
在controller中增加如下代码
@GetMapping("/") public String uid(HttpServletRequest request) { HttpSession session = request.getSession(); UUID uid = (UUID) session.getAttribute("uid"); if (uid == null) { uid = UUID.randomUUID(); } session.setAttribute("uid", uid); return uid.toString() + " : " + session.getId(); }
启动服务,在chrome浏览器输入 http://127.0.0.1:8080/,得到sessionId
fbfae849-1d49-4301-b963-573048e763e7
在redis中可以看到如下信息
1) "spring:session:xxxx:sessions:fbfae849-1d49-4301-b963-573048e763e7"
2) "spring:session:xxxx:expirations:1483958700000"
3) "spring:session:xxxx:sessions:expires:fbfae849-1d49-4301-b963-573048e763e7"
打开火狐的HttpRequester,使用chrome获取的sessionId点击Get,可以看到如下输出
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍详解spring boot集成RabbitMQ,包括了详解spring boot集成RabbitMQ的使用技巧和注意事项,需要的朋友参考一下 RabbitMQ作为AMQP的代表性产品,在项目中大量使用。结合现在主流的spring boot,极大简化了开发过程中所涉及到的消息通信问题。 首先正确的安装RabbitMQ及运行正常。 RabbitMQ需啊erlang环境,所以首先安装对应版
本文向大家介绍Spring Boot集成Spring Cache过程详解,包括了Spring Boot集成Spring Cache过程详解的使用技巧和注意事项,需要的朋友参考一下 一、关于Spring Cache 缓存在现在的应用中越来越重要, Spring从3.1开始定义了org.springframework.cache.Cache和org.springframework.cache.Cach
本文向大家介绍详解Spring Boot 使用Spring security 集成CAS,包括了详解Spring Boot 使用Spring security 集成CAS的使用技巧和注意事项,需要的朋友参考一下 1.创建工程 创建Maven工程:springboot-security-cas 2.加入依赖 创建工程后,打开pom.xml,在pom.xml中加入以下内容: 3.创建applicati
本文向大家介绍详解Redis 缓存 + Spring 的集成示例,包括了详解Redis 缓存 + Spring 的集成示例的使用技巧和注意事项,需要的朋友参考一下 《整合 spring 4(包括mvc、context、orm) + mybatis 3 示例》一文简要介绍了最新版本的 Spring MVC、IOC、MyBatis ORM 三者的整合以及声明式事务处理。现在我们需要把缓存也整合进来,缓
本文向大家介绍Spring集成Struts与Hibernate入门详解,包括了Spring集成Struts与Hibernate入门详解的使用技巧和注意事项,需要的朋友参考一下 前言 最近将Spring,Struts,Hiberbate基础已经学习完成。想自己把这三个框架集成一下,然后再写一个后台管理网站练练手。Spring的作用是依赖注入,而Struts是显示层的东西,这两个框架集成后是什么样子。
本文向大家介绍基于spring boot 1.5.4 集成 jpa+hibernate+jdbcTemplate(详解),包括了基于spring boot 1.5.4 集成 jpa+hibernate+jdbcTemplate(详解)的使用技巧和注意事项,需要的朋友参考一下 1.pom添加依赖 2.添加数据源配置(DataSource啥的,一系列对象spring boot 都会给你注入的,配置配置