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
##分散式鎖定
##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>
這裡忽略了其他的設定如MySQL這些,只突顯Redis的設定資訊
spring: # Redis設定 redis:
host: localhost port: 6379
# 根據自己設定的密碼決定
database: 0
卷# max-idle: 4 # 連接池中的最大空閒連接min-idle: 0 # 連接池中的最小空閒連接
3.3、設定類別################################################################################################################################################################################。專門的客戶端介面操作,將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; } }
@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中文網其他相關文章!