77 lines
2.3 KiB
Java
Raw Normal View History

2021-06-04 16:09:43 +08:00
package com.ruoyi.demo.controller;
2021-06-22 16:45:37 +08:00
import com.baomidou.lock.LockInfo;
import com.baomidou.lock.LockTemplate;
import com.baomidou.lock.annotation.Lock4j;
import com.baomidou.lock.executor.RedissonLockExecutor;
2022-01-29 11:48:41 +08:00
import com.ruoyi.common.core.domain.R;
2021-09-03 16:21:23 +08:00
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
2021-06-09 23:31:47 +08:00
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
2021-06-04 16:09:43 +08:00
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
2021-06-22 16:45:37 +08:00
import java.time.LocalTime;
2021-06-04 16:09:43 +08:00
/**
* 测试分布式锁的样例
*
* @author shenxinquan
*/
2021-09-03 16:21:23 +08:00
@Api(value = "测试分布式锁的样例", tags = {"测试分布式锁的样例"})
2021-06-09 23:31:47 +08:00
@Slf4j
2021-06-04 16:09:43 +08:00
@RestController
@RequestMapping("/demo/redisLock")
public class RedisLockController {
@Autowired
private LockTemplate lockTemplate;
2021-06-09 23:31:47 +08:00
/**
* 测试lock4j 注解
*/
@ApiOperation("测试lock4j 注解")
@Lock4j(keys = {"#key"})
@GetMapping("/testLock4j")
2022-01-29 11:48:41 +08:00
public R<String> testLock4j(String key, String value) {
System.out.println("start:" + key + ",time:" + LocalTime.now().toString());
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("end :" + key + ",time:" + LocalTime.now().toString());
2022-01-29 11:48:41 +08:00
return R.ok("操作成功", value);
}
2021-06-22 16:45:37 +08:00
/**
* 测试lock4j 工具
*/
@ApiOperation("测试lock4j 工具")
2022-01-22 10:19:18 +08:00
@GetMapping("/testLock4jLockTemplate")
2022-01-29 11:48:41 +08:00
public R<String> testLock4jLockTemplate(String key, String value) {
final LockInfo lockInfo = lockTemplate.lock(key, 30000L, 5000L, RedissonLockExecutor.class);
if (null == lockInfo) {
throw new RuntimeException("业务处理中,请稍后再试");
}
// 获取锁成功,处理业务
try {
try {
Thread.sleep(8000);
} catch (InterruptedException e) {
//
}
System.out.println("执行简单方法1 , 当前线程:" + Thread.currentThread().getName());
} finally {
//释放锁
lockTemplate.releaseLock(lockInfo);
}
//结束
2022-01-29 11:48:41 +08:00
return R.ok("操作成功", value);
}
2021-06-10 20:23:15 +08:00
2021-06-04 16:09:43 +08:00
}