springboot如何安装redis使用

1.windows安装redis

下载地址https://github.com/MSOpenTech/redis/tags

springboot如何安装redis使用_第1张图片

2. 解压至某个盘

springboot如何安装redis使用_第2张图片

3.可在conf配置文件中设置密码

requirepass password
开始默认无密码
springboot如何安装redis使用_第3张图片

4.在安装目录使用cmd打开或者直接点开redis-server.exe

出现以下类似界面的即开启成功,可以点击redis-cli.exe进行使用验证是否开启成功
springboot如何安装redis使用_第4张图片
springboot如何安装redis使用_第5张图片

5.springboot 中配置redis

(1).pom.xml中添加redis依赖

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

(2).在yml配置文件中配置redis信息

#  多数据源配置
server:
  port: 8081
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/demo?useSSL=true&useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai
    username: root
    password: 123456
  redis:
    database: 0
    host: 127.0.0.1
    port: 6379
    password: 123456
    jedis:
      pool:
        max-active: 8
        max-wait: -1
        max-idle: 10
        min-idle: 2
    timeout: 6000



(3).写一个测试test,注入RedisTemplate

package com.example.spring_boot;

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;

import java.util.List;

@SpringBootTest
class ApplicationTests {
    @Autowired
    private RedisTemplate redisTemplate;

    @Test
    void contextLoads() {
        //调用set()方法缓存
        redisTemplate.opsForValue().set("hello","hjt");
        System.out.println("hello"+redisTemplate.opsForValue().get("hello"));
    }

}

6.成功

springboot如何安装redis使用_第6张图片

你可能感兴趣的:(html,javascript,前端,redis)