SpringBoot使用Redis存储session(二)

添加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,可以看到如下输出

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值