sxq
2021-06-22 645c926bbd52baa90c0a4af0d253047709c5e02c
ruoyi-demo/src/main/java/com/ruoyi/demo/controller/RedisLockController.java
@@ -1,7 +1,11 @@
package com.ruoyi.demo.controller;
import com.ruoyi.common.annotation.RedisLock;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.redis.RedisLockManager;
import com.ruoyi.demo.service.ITestDemoService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -12,24 +16,40 @@
 *
 * @author shenxinquan
 */
@Slf4j
@RestController
@RequestMapping("/demo/redisLock")
public class RedisLockController {
   @Autowired
   private ITestDemoService testDemoService;
   /**
    * #p0 标识取第一个参数为redis锁的key
    * 测试lock4j
    * @param key
    * @param value
    * @return
    */
   @GetMapping("/getLock")
   @RedisLock(expireTime = 10, key = "#p0")
   public AjaxResult<String> getLock(String key, String value) {
      try {
         // 同时请求排队
//         Thread.sleep(5000);
         // 锁超时测试
         Thread.sleep(11000);
      } catch (InterruptedException e) {
         e.printStackTrace();
      }
   @GetMapping("/testLock4j")
   public  AjaxResult<String> testLock4j(String key,String value){
      testDemoService.testLock4j(key);
      return AjaxResult.success("操作成功",value);
   }
   @GetMapping("/testLock4jLockTemaplate")
   public  AjaxResult<String> testLock4jLockTemaplate(String key,String value){
      testDemoService.testLock4jLockTemaplate(key);
      return AjaxResult.success("操作成功",value);
   }
   /**
    * 测试spring-cache注解
    */
   @Cacheable(value = "test", key = "#key")
   @GetMapping("/testCache")
   public AjaxResult<String> testCache(String key) {
      return AjaxResult.success("操作成功", key);
   }
}