From dd25573ebce3450d90d0012a30b12a5185bc7310 Mon Sep 17 00:00:00 2001
From: 疯狂的狮子li <15040126243@163.com>
Date: 星期五, 08 七月 2022 15:49:15 +0800
Subject: [PATCH] update 使用 @param 注释替换 @Parameter 注解 fix 修复 token 无法传递 与 无法持久化问题

---
 ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisCacheController.java |   34 ++++++++++++++--------------------
 1 files changed, 14 insertions(+), 20 deletions(-)

diff --git a/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisCacheController.java b/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisCacheController.java
index 775779a..a345167 100644
--- a/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisCacheController.java
+++ b/ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisCacheController.java
@@ -1,11 +1,9 @@
 package com.ruoyi.demo.controller;
 
-import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.common.core.domain.R;
 import com.ruoyi.common.utils.redis.RedisUtils;
-import io.swagger.annotations.Api;
-import io.swagger.annotations.ApiOperation;
+import io.swagger.v3.oas.annotations.tags.Tag;
 import lombok.RequiredArgsConstructor;
-import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.cache.annotation.CacheEvict;
 import org.springframework.cache.annotation.CachePut;
 import org.springframework.cache.annotation.Cacheable;
@@ -13,7 +11,7 @@
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
-import java.util.concurrent.TimeUnit;
+import java.time.Duration;
 
 /**
  * spring-cache 婕旂ず妗堜緥
@@ -22,8 +20,8 @@
  */
 // 绫荤骇鍒� 缂撳瓨缁熶竴閰嶇疆
 //@CacheConfig(cacheNames = "redissonCacheMap")
-@Api(value = "spring-cache 婕旂ず妗堜緥", tags = {"spring-cache 婕旂ず妗堜緥"})
-@RequiredArgsConstructor(onConstructor_ = @Autowired)
+@Tag(name = "spring-cache 婕旂ず妗堜緥", description = "spring-cache 婕旂ず妗堜緥")
+@RequiredArgsConstructor
 @RestController
 @RequestMapping("/demo/cache")
 public class RedisCacheController {
@@ -42,11 +40,10 @@
      * <p>
      * cacheNames 涓洪厤缃枃浠跺唴 groupId
      */
-    @ApiOperation("娴嬭瘯 @Cacheable")
     @Cacheable(cacheNames = "redissonCacheMap", key = "#key", condition = "#key != null")
     @GetMapping("/test1")
-    public AjaxResult<String> test1(String key, String value) {
-        return AjaxResult.success("鎿嶄綔鎴愬姛", value);
+    public R<String> test1(String key, String value) {
+        return R.ok("鎿嶄綔鎴愬姛", value);
     }
 
     /**
@@ -57,11 +54,10 @@
      * <p>
      * cacheNames 涓� 閰嶇疆鏂囦欢鍐� groupId
      */
-    @ApiOperation("娴嬭瘯 @CachePut")
     @CachePut(cacheNames = "redissonCacheMap", key = "#key", condition = "#key != null")
     @GetMapping("/test2")
-    public AjaxResult<String> test2(String key, String value) {
-        return AjaxResult.success("鎿嶄綔鎴愬姛", value);
+    public R<String> test2(String key, String value) {
+        return R.ok("鎿嶄綔鎴愬姛", value);
     }
 
     /**
@@ -72,11 +68,10 @@
      * <p>
      * cacheNames 涓� 閰嶇疆鏂囦欢鍐� groupId
      */
-    @ApiOperation("娴嬭瘯 @CacheEvict")
     @CacheEvict(cacheNames = "redissonCacheMap", key = "#key", condition = "#key != null")
     @GetMapping("/test3")
-    public AjaxResult<String> test3(String key, String value) {
-        return AjaxResult.success("鎿嶄綔鎴愬姛", value);
+    public R<String> test3(String key, String value) {
+        return R.ok("鎿嶄綔鎴愬姛", value);
     }
 
     /**
@@ -84,11 +79,10 @@
      * 鎵嬪姩璁剧疆杩囨湡鏃堕棿10绉�
      * 11绉掑悗鑾峰彇 鍒ゆ柇鏄惁鐩哥瓑
      */
-    @ApiOperation("娴嬭瘯璁剧疆杩囨湡鏃堕棿")
     @GetMapping("/test6")
-    public AjaxResult<Boolean> test6(String key, String value) {
+    public R<Boolean> test6(String key, String value) {
         RedisUtils.setCacheObject(key, value);
-        boolean flag = RedisUtils.expire(key, 10, TimeUnit.SECONDS);
+        boolean flag = RedisUtils.expire(key, Duration.ofSeconds(10));
         System.out.println("***********" + flag);
         try {
             Thread.sleep(11 * 1000);
@@ -96,7 +90,7 @@
             e.printStackTrace();
         }
         Object obj = RedisUtils.getCacheObject(key);
-        return AjaxResult.success("鎿嶄綔鎴愬姛", value.equals(obj));
+        return R.ok(value.equals(obj));
     }
 
 }

--
Gitblit v1.9.3