中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在spring boot中使用Redis實現工具類

發布時間:2021-05-21 16:11:57 來源:億速云 閱讀:170 作者:Leah 欄目:編程語言

本篇文章為大家展示了怎么在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是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

上述內容就是怎么在spring boot中使用Redis實現工具類,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄂伦春自治旗| 蓝山县| 吴江市| 娄底市| 双流县| 巴中市| 什邡市| 无锡市| 尼勒克县| 诸城市| 许昌县| 兰州市| 易门县| 进贤县| 紫金县| 辽中县| 蕲春县| 镇康县| 舒兰市| 松阳县| 安义县| 上蔡县| 电白县| 永昌县| 裕民县| 旬邑县| 新源县| 东方市| 临澧县| 杭锦后旗| 黑山县| 曲松县| 雅江县| 巩义市| 托克托县| 富裕县| 钟山县| 盱眙县| 思茅市| 海林市| 东安县|