Redis实现共享Session

Redis实现共享Session

分布式系统中,sessiong共享有很多的解决方案,其中托管到缓存中应该是最常用的方案之一。

1、引入依赖


<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>
    <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.5.6version>
        <relativePath/>
    parent>
    <groupId>com.examplegroupId>
    <artifactId>spring-boot-redis-sessionartifactId>
    <version>0.0.1-SNAPSHOTversion>
    <name>spring-boot-redis-sessionname>
    <description>spring-boot-redis-sessiondescription>
    <properties>
        <java.version>1.8java.version>
    properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starterartifactId>
        dependency>

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-testartifactId>
            <scope>testscope>
        dependency>

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-data-redisartifactId>
        dependency>

        <dependency>
            <groupId>org.springframework.sessiongroupId>
            <artifactId>spring-session-data-redisartifactId>
        dependency>

        <dependency>
            <groupId>org.springframework.sessiongroupId>
            <artifactId>spring-sessionartifactId>
        dependency>

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>

    dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>

project>

2、配置文件

# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址
spring.redis.host=127.0.0.1
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=10
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait=-1ms
# 连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=10
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=1000ms

3、Session配置

package com.example.springbootredissession.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;

/**
 * @author zhangshixing
 * @date 2021年11月06日 21:14
 */
@Configuration
@EnableRedisHttpSession(maxInactiveIntervalInSeconds = 86400 * 30)
public class SessionConfig {

}

maxInactiveIntervalInSeconds: 设置Session失效时间,使用Redis Session之后,原Boot的

server.session.timeout属性不再生效。

4、控制器

package com.example.springbootredissession.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpSession;
import java.util.UUID;

/**
 * @author zhangshixing
 * @date 2021年11月06日 21:15
 */
@RestController
public class SessionController {

    @RequestMapping(value = "uid",method = RequestMethod.GET)
    public String uid(HttpSession session) {
        UUID uid = (UUID) session.getAttribute( "uid" );
        if (uid == null ) {
            uid = UUID.randomUUID();
        }
        session.setAttribute( "uid" , uid);
        return session.getId();
    }
}

5、启动类

package com.example.springbootredissession;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringBootRedisSessionApplication {

	public static void main(String[] args) {
		SpringApplication.run(SpringBootRedisSessionApplication.class, args);
	}

}

6、测试

访问:http://localhost:8080/uid
Redis实现共享Session_第1张图片

登录redis 输入 keys *session*

127.0.0.1:6379> keys *session*
1) "spring:session:sessions:96062709-c987-46d4-88e3-3c952eccbf50"
2) "spring:session:sessions:expires:96062709-c987-46d4-88e3-3c952eccbf50"
3) "spring:session:expirations:1659325500000"

其中1659325500000为失效时间,意思是这个时间后session失效。

96062709-c987-46d4-88e3-3c952eccbf50为sessionId。

登录http://localhost:8080/uid 发现会一致,就说明session 已经在redis里面进行有效的管理了。

如何在两台或者多台中共享session,其实就是按照上面的步骤在另一个项目中再次配置一次,启动后自动就

进行了session共享。

你可能感兴趣的:(redis,redis,spring,boot)