首頁 > 軟體

SpringBoot讀寫Redis使用者端並實現Jedis技術切換功能

2023-02-01 18:02:48

SpringBoot整合Redis

讀寫使用者端

首先應該開啟redis服務;

cd命令進入Redis安裝目錄下:

進入Redis使用者端:

redis-cli.exe -h 127.0.0.1 -p 6379

再次獲取:

  一個是伺服器端設定的"name",一個是使用者端設定的"name",伺服器端設定的"name" ,伺服器端設定的"name"不能使用String型別獲取,而使用者端設定的name可以。

  整合Redis中,使用RedisTemplate獲取到的是物件,而StringRedisTemplate獲取到的是字串。

新建一個測試類:

package spring_redis;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.junit.jupiter.api.Test;
import org.springframework.data.redis.core.StringRedisTemplate;
 
import java.util.*;
import java.io.*;
@SpringBootTest
public class StringRedisTemplateTest {
    @Autowired
    private StringRedisTemplate stringRedisTemplate;//以字串為操作物件
}

將測試操作放入測試類中。

  @Test
   void  get(){
        ValueOperations<String, String>ops=stringRedisTemplate.opsForValue();
        String name=ops.get("name");
        System.out.println(name);
    }

控制檯:

 使用使用者端修改下“name":

 再次執行測試:

常用StringRedisTemplate。

jedis技術

操作redis使用者端傳統使用jedis技術。

首先在pom.xml檔案裡匯入jedis座標依賴:

 <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
        </dependency>

在組態檔中修改設定:

spring:
  redis:
    host: localhost
    port: 6379
    client-type: jedis

到此這篇關於SpringBoot讀寫Redis使用者端並實現技術切換的文章就介紹到這了,更多相關SpringBoot讀寫Redis使用者端內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com