TemplarJQ / KillMall

使用SpringBoot+Mybatis实现的秒杀商城项目
1 stars 1 forks source link

[007 - Redis存储分布式会话]Redis #7

Open TemplarJQ opened 5 years ago

TemplarJQ commented 5 years ago

分布式会话

session

另一种方式

分布式情况

TemplarJQ commented 5 years ago

Session的使用

1.springboot对redis的导入过程

      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-data-redis</artifactId>
          <version>2.1.6.RELEASE</version>
      </dependency>

      <dependency>
          <groupId>org.springframework.session</groupId>
          <artifactId>spring-session-data-redis</artifactId>
      </dependency>

2.加入配置

3.redis配置生效

TemplarJQ commented 5 years ago

线上部署

线上Redis的部署

读取redis测试

TemplarJQ commented 5 years ago

Token的Redis设计

UUID式的Token实现

对于前端业务的修改