From 17f0c20242c6ee3d35b9ee8f677d747ed012423c Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期五, 02 九月 2022 16:30:20 +0800 Subject: [PATCH] remove 移除maven docker插件 过于老旧功能缺陷大 使用idea自带的docker插件替代 --- ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisCacheController.java | 48 +++++++++++++++++++++--------------------------- 1 files changed, 21 insertions(+), 27 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 28e380b..7342cba 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,9 +1,8 @@ package com.ruoyi.demo.controller; -import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.constant.CacheNames; +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 lombok.RequiredArgsConstructor; import org.springframework.cache.annotation.CacheEvict; import org.springframework.cache.annotation.CachePut; @@ -12,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 婕旂ず妗堜緥 @@ -20,8 +19,7 @@ * @author Lion Li */ // 绫荤骇鍒� 缂撳瓨缁熶竴閰嶇疆 -//@CacheConfig(cacheNames = "redissonCacheMap") -@Api(value = "spring-cache 婕旂ず妗堜緥", tags = {"spring-cache 婕旂ず妗堜緥"}) +//@CacheConfig(cacheNames = CacheNames.DEMO_CACHE) @RequiredArgsConstructor @RestController @RequestMapping("/demo/cache") @@ -39,43 +37,40 @@ * 閲嶇偣璇存槑: 缂撳瓨娉ㄨВ涓ヨ皑涓庡叾浠栫瓫閫夋暟鎹姛鑳戒竴璧蜂娇鐢� * 渚嬪: 鏁版嵁鏉冮檺娉ㄨВ 浼氶�犳垚 缂撳瓨鍑荤┛ 涓� 鏁版嵁涓嶄竴鑷撮棶棰� * <p> - * cacheNames 涓洪厤缃枃浠跺唴 groupId + * cacheNames 鍛藉悕瑙勫垯 鏌ョ湅 {@link CacheNames} 娉ㄩ噴 鏀寔澶氬弬鏁� */ - @ApiOperation("娴嬭瘯 @Cacheable") - @Cacheable(cacheNames = "redissonCacheMap", key = "#key", condition = "#key != null") + @Cacheable(cacheNames = "demo:cache#60s#10m#20", 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); } /** * 娴嬭瘯 @CachePut * <p> * 鍔犱簡@CachePut娉ㄨВ鐨勬柟娉�,浼氭妸鏂规硶鐨勮繑鍥炲�紁ut鍒扮紦瀛橀噷闈㈢紦瀛樿捣鏉�,渚涘叾瀹冨湴鏂逛娇鐢� - * 瀹冦�岄�氬父鐢ㄥ湪鏂板鏂规硶涓娿�� + * 瀹冦�岄�氬父鐢ㄥ湪鏂板鎴栬�呭疄鏃舵洿鏂版柟娉曚笂銆� * <p> - * cacheNames 涓� 閰嶇疆鏂囦欢鍐� groupId + * cacheNames 鍛藉悕瑙勫垯 鏌ョ湅 {@link CacheNames} 娉ㄩ噴 鏀寔澶氬弬鏁� */ - @ApiOperation("娴嬭瘯 @CachePut") - @CachePut(cacheNames = "redissonCacheMap", key = "#key", condition = "#key != null") + @CachePut(cacheNames = CacheNames.DEMO_CACHE, 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); } /** * 娴嬭瘯 @CacheEvict * <p> * 浣跨敤浜咰acheEvict娉ㄨВ鐨勬柟娉�,浼氭竻绌烘寚瀹氱紦瀛� - * 銆屼竴鑸敤鍦ㄦ洿鏂版垨鑰呭垹闄ょ殑鏂规硶涓娿�� + * 銆屼竴鑸敤鍦ㄥ垹闄ょ殑鏂规硶涓娿�� * <p> - * cacheNames 涓� 閰嶇疆鏂囦欢鍐� groupId + * cacheNames 鍛藉悕瑙勫垯 鏌ョ湅 {@link CacheNames} 娉ㄩ噴 鏀寔澶氬弬鏁� */ - @ApiOperation("娴嬭瘯 @CacheEvict") - @CacheEvict(cacheNames = "redissonCacheMap", key = "#key", condition = "#key != null") + @CacheEvict(cacheNames = CacheNames.DEMO_CACHE, 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); } /** @@ -83,11 +78,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); @@ -95,7 +89,7 @@ e.printStackTrace(); } Object obj = RedisUtils.getCacheObject(key); - return AjaxResult.success("鎿嶄綔鎴愬姛", value.equals(obj)); + return R.ok(value.equals(obj)); } } -- Gitblit v1.9.3