您好,登錄后才能下訂單哦!
這篇文章主要介紹“SpringBoot集成Redis操作API的方法”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“SpringBoot集成Redis操作API的方法”文章能幫助大家解決問題。
在SpringBoot2.X之前還是直接使用的官方推薦的Jedis連接的Redis
在2.X之后換為了lettuce
Jedis:采用直接連接,多線程操作不安全,如果想要避免不安全,使用Jedis pool連接池;BIO
lettuce:底層采用Netty,實例可以在多個線程之間共享,不存在線程不安全的情況,可以減少線程數量;NIO
SpringBoot所有的配置類,都有一個自動配置類
自動配置類都會綁定一個properties文件
在源碼中找到Spring.factories
在里面搜索redis,找到AutoConfiguration
按ctrl+點擊進入類
找到redisproperties.class
ctrl+點擊進入
里面就是全部的redis相關配置了,先簡單看一下,其他的后面再說
默認注入的Bean
但是默認的redisTemplate是存在一些問題的,他的key是Object類型的,但是我們期望的一般key都是String類型的這就需要強制類型轉換了,所以上面提出了,可以自己定義RedisTemplate
在配置配置文件時,如果需要配置連接池,就采用lettuce的,不要直接配置Redis的,配置了也不生效
查看注入時的RedisConnectionFactory
他是存在兩個子類的,分別是JedisConnectionFactory和LettuceConnectionFactory
為什么說直接JedisConnectionFactory不生效呢?是因為類中的很多依賴類都是不存在的
全都是爆紅線的,而lettuceConnectionFactory中的依賴就是全部存在的
所以配置時,采用lettuce的
不要直接配置jedis的
拷貝properties創建一個yml格式的配置文件, 我還是很喜歡yml的
spring: redis: host: localhost port: 6379
在項目創建的時候選擇,如果沒有選擇就添加
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
打開SpringBoot默認創建的測試類
redisTemp操作數據類型的方法都是以opsFor開頭,后面是類型
比如opsForValue就是操作字符串的
然后后面的應用就和前面寫的API一樣了
常用的操作可以直接點就可以了
關于事物的
redisTemplate.unwatch(); redisTemplate.watch("key"); redisTemplate.multi(); redisTemplate.discard(); redisTemplate.exec();
關于數據庫的操作需要獲取鏈接后使用連接對象操作
RedisConnection connection = redisTemplate.getConnectionFactory().getConnection();connection.flushAll();connection.flushDb();connection.close();
package co.flower.redis02springboot;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.connection.RedisConnection;import org.springframework.data.redis.core.RedisTemplate; @SpringBootTestclass Redis02SpringbootApplicationTests {/** * 我居然直接就指定了泛型 RedisTemplate<String,Object>結果就直接報錯了,刪除泛型后成功 */@Autowiredprivate RedisTemplate redisTemplate; @Testvoid contextLoads() {// 英文測試redisTemplate.opsForValue().set("name","xiaojiejie"); System.out.println(redisTemplate.opsForValue().get("name"));// 中文測試redisTemplate.opsForValue().set("name","小姐姐"); System.out.println(redisTemplate.opsForValue().get("name")); } } 執行結果,SpringBoot的啟動加載和結束銷毀沒有粘貼/***SpringBootStart****/xiaojiejie 小姐姐/***SpringBootStop*****/
關于“SpringBoot集成Redis操作API的方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。