首頁 > 資料庫 > Redis > 主體

SpringBoot怎麼整合Redis快取驗證碼

王林
發布: 2023-05-27 21:16:23
轉載
739 人瀏覽過

1、簡介

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker.

翻譯:Redis 是一個開源的記憶體中的資料結構儲存系統,它可以用作:資料庫、快取和訊息中間件。

Redis 是用 C 語言開發的一個開源的高效能鍵值對(key-value)資料庫,官方提供的資料是可以達到 **100000 **的 QPS。

QPS(Queries-per-second),每秒內查詢次數。 (百度百科)

它所儲存的 value 類型比較豐富,也被稱為結構化的 NoSQL 資料庫。

NoSQL(Not only SQL),不只是 SQL,泛指非關聯式資料庫。

NoSQL 資料庫不是要取代關係型資料庫,而是關係型資料庫的補充。

關聯式資料庫(RDBMS)

  • MySQL

  • Oracle

  • DB2

SQL Server
  • 非關係型資料庫(NoSQL)
  • Redis
  • Mongo db
  • MemCached

Redis 套用場景

快取

任務佇列

訊息佇列

##分散式鎖定

##2、介紹


Reddis官方推薦的Java客戶端有三種:Jedis、Lettuce、Redisson。

Spring 對 Redis 用戶端進行了整合,提供了 Spring Data Redis。

在 Spring Boot 專案中也提供了對應的 Starter,即 spring-boot-starter-data-redis。

這裡直接使用的是Spring Data Redis,且不展示Redis的下載和安裝過程啦。

3、前期設定

3.1、座標導入

在建立完成Spring Boot專案之後,在pom.xml中加入
spring-boot-start-data -redis

的依賴座標
<!--Spring Data Redis-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
登入後複製

3.2、設定檔

這裡忽略了其他的設定如MySQL這些,只突顯Redis的設定資訊

spring: 

  # Redis設定  redis:    host: localhost    port: 6379    # 根據自己設定的密碼決定

   password: 123456##  預設有16個資料庫

    database: 0

卷#        max-idle: 4   # 連接池中的最大空閒連接

        min-idle: 0   # 連接池中的最小空閒連接

3.3、設定類別

SpringBoot怎麼整合Redis快取驗證碼

SpringBoot怎麼整合Redis快取驗證碼

################################################################################################################################################################################。專門的客戶端介面操作,將Redis 整合到Spring Boot 中。這裡採用的是 RedisTemplate 工具類,由 SpringBoot 框架提供。 ######RedisTemplate 在處理 key 和 value 時,會對其進行序列化操作,這就會導致一些問題。 ######例如:輸入的 key 值是 ###city###,但 redis 得到到的 key 值是 ###\xac]xed\x00\x05t\x00\x04city###。 ######因此需要一個專門的配置類,來專門處理 RedisTemplate 預設的序列化處理所導致的問題。 ######值得注意的是,這裡是重新載入一個新的序列化器來取代原來的序列化器,這就證明著其原本是有著自己預設的序列化器JdkSerializationRedisSerializer。 ###
/**
 * @classname RedisConfig
 * @description Redis配置类,更换key的默认序列化器
 * @author xBaozi
 * @date 19:04 2022/7/2
 **/
@Configuration
public class RedisConfig extends CachingConfigurerSupport {
    @Bean
    public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory connectionFactory) {
        RedisTemplate<Object, Object> redisTemplate = new RedisTemplate<>();
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setHashKeySerializer(new StringRedisSerializer());
        redisTemplate.setConnectionFactory(connectionFactory);
        return redisTemplate;
    }
}
登入後複製
###4、Java操作Redis######在這裡由於程式碼比較隱私(主要是懶得整理登入和產生驗證碼的介面放在這裡),因此這裡就直接使用測試類別進行演示。 ######發送驗證碼###
@PostMapping("/sendMsg")
public Result<String> sendMsg(@RequestBody User user, HttpSession session) {
    // 获取需要发送短信的手机号
    String userPhone = user.getPhone();
    if (StringUtils.isNotEmpty(userPhone)) {
        // 随机生成4位验证码
        String checkCode = ValidateCodeUtils.generateValidateCode4String(4);
        // 将生成的验证码保存到Redis中并设置有效期五分钟
        redisTemplate.opsForValue().set(userPhone, checkCode, 5, TimeUnit.MINUTES);
        return Result.success(checkCode);
    }
    return Result.error("短信发送错误");
}
登入後複製
############輸入驗證碼登入###
@PostMapping("/login")
public Result<User> login(@RequestBody Map map, HttpSession session) {
    log.info("map: {}", map);
    // 获取用户输入信息
    String phone = (String)map.get("phone");
    String code = (String)map.get("code");
    // 从Redis中取出验证码
    String checkCode = redisTemplate.opsForValue().get(phone);
    // 比对验证码是否一致
    if (StringUtils.isNotEmpty(checkCode) && checkCode.equals(code.toLowerCase())) {
        // 将用户id存放到session中
        session.setAttribute("user", user.getId());
        // 登录成功,删除Redis中的验证码
        redisTemplate.delete(phone);
        // 将用户信息返回到前端
        return Result.success(user);
    }
    return Result.error("登录失败,请检查手机号或验证码是否正确");
}
登入後複製
#########

以上是SpringBoot怎麼整合Redis快取驗證碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!