您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在spring boot中使用Redis實現工具類,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
引入依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
加入配置
# Redis數據庫索引(默認為0) spring.redis.database=0 # Redis服務器地址 spring.redis.host=localhost # Redis服務器連接端口 spring.redis.port=6379
實現代碼
這里用到了 靜態類工具類中 如何使用 @Autowired
package com.lmxdawn.api.common.utils; import java.util.Collection; import java.util.Set; import java.util.concurrent.TimeUnit; import javax.annotation.PostConstruct; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Component; /** * 緩存操作類 */ @Component public class CacheUtils { @Autowired private RedisTemplate<String, String> redisTemplate; // 維護一個本類的靜態變量 private static CacheUtils cacheUtils; @PostConstruct public void init() { cacheUtils = this; cacheUtils.redisTemplate = this.redisTemplate; } /** * 將參數中的字符串值設置為鍵的值,不設置過期時間 * @param key * @param value 必須要實現 Serializable 接口 */ public static void set(String key, String value) { cacheUtils.redisTemplate.opsForValue().set(key, value); } /** * 將參數中的字符串值設置為鍵的值,設置過期時間 * @param key * @param value 必須要實現 Serializable 接口 * @param timeout */ public static void set(String key, String value, Long timeout) { cacheUtils.redisTemplate.opsForValue().set(key, value, timeout, TimeUnit.SECONDS); } /** * 獲取與指定鍵相關的值 * @param key * @return */ public static Object get(String key) { return cacheUtils.redisTemplate.opsForValue().get(key); } /** * 設置某個鍵的過期時間 * @param key 鍵值 * @param ttl 過期秒數 */ public static boolean expire(String key, Long ttl) { return cacheUtils.redisTemplate.expire(key, ttl, TimeUnit.SECONDS); } /** * 判斷某個鍵是否存在 * @param key 鍵值 */ public static boolean hasKey(String key) { return cacheUtils.redisTemplate.hasKey(key); } /** * 向集合添加元素 * @param key * @param value * @return 返回值為設置成功的value數 */ public static Long sAdd(String key, String... value) { return cacheUtils.redisTemplate.opsForSet().add(key, value); } /** * 獲取集合中的某個元素 * @param key * @return 返回值為redis中鍵值為key的value的Set集合 */ public static Set<String> sGetMembers(String key) { return cacheUtils.redisTemplate.opsForSet().members(key); } /** * 將給定分數的指定成員添加到鍵中存儲的排序集合中 * @param key * @param value * @param score * @return */ public static Boolean zAdd(String key, String value, double score) { return cacheUtils.redisTemplate.opsForZSet().add(key, value, score); } /** * 返回指定排序集中給定成員的分數 * @param key * @param value * @return */ public static Double zScore(String key, String value) { return cacheUtils.redisTemplate.opsForZSet().score(key, value); } /** * 刪除指定的鍵 * @param key * @return */ public static Boolean delete(String key) { return cacheUtils.redisTemplate.delete(key); } /** * 刪除多個鍵 * @param keys * @return */ public static Long delete(Collection<String> keys) { return cacheUtils.redisTemplate.delete(keys); } }
springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。
上述內容就是怎么在spring boot中使用Redis實現工具類,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。