1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
| @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface DistributedLock {
long expireMillis() default 3600000L;
long timeoutMillis() default 60000L;
String mainKey() default "";
String spelKey() default "";
boolean skipWhenCanNotGetLock() default false; }
@Slf4j @Aspect @Order(2) @Component public class DistributedLockAspect { @Resource private RedisDistributedLock redisDistributedLock;
String COM_LOCK = "com:lock:";
String COM_LOCK_FEIGN_OAUTH_TOKEN = COM_LOCK + "token:feign_oauth:";
@Around("@annotation(distributedLock)") public Object around(ProceedingJoinPoint point, DistributedLock distributedLock) throws Throwable { String key = generateLockKey(point, distributedLock.mainKey(), distributedLock.spelKey());
if (distributedLock.skipWhenCanNotGetLock() && redisDistributedLock.isExist(key)) { log.warn("DistributedLock 无法获得锁: {}, 锁已存在, 程序将跳过执行", key); return null; }
boolean tryLock = false; try { tryLock = redisDistributedLock.tryLock(key, distributedLock.expireMillis(), distributedLock.timeoutMillis()); if (!tryLock) { throw new DistributedLockConcurrentException("@DistributedLock获取锁失败,已有相同任务在运行"); } return point.proceed(); } finally { if (tryLock) { redisDistributedLock.unLock(key); } } }
private String generateLockKey(ProceedingJoinPoint point, String mainKey, String spelKey) { MethodSignature signature = AopUtil.getMethodSignature(point);
String targrtMainKey; if (StrUtil.isBlank(mainKey)) { String className = AopUtil.getClassName(point); String methodName = signature.getName(); targrtMainKey = className + "_" + methodName; } else { targrtMainKey = mainKey; }
if (StrUtil.isBlank(spelKey)) { return COM_LOCK + targrtMainKey; }
Method method = signature.getMethod(); Object[] args = point.getArgs(); String targetSpelKey = AopUtil.parseSpelKey(spelKey, method, args, String.class);
return COM_LOCK + targrtMainKey + "_" + targetSpelKey; } }
@Slf4j @Component @Validated public class RedisDistributedLock {
@Resource private RedisTemplate redisTemplate;
public boolean tryLock(String key, long expireMillis, long timeoutMillis) { String macThreadId = getThreadSignature(); return tryLock(key, macThreadId, expireMillis, timeoutMillis); }
public boolean tryLockCnt(String key, @Min(1) int tryLockCnt, long expireMillis) { String macThreadId = getThreadSignature(); return tryLockCnt(key, macThreadId, tryLockCnt, expireMillis); }
public boolean unLock(String key) { String macThreadId = getThreadSignature(); return unLock(key, macThreadId); }
public boolean unLockLater(String key, long expireSecond) { String signature = getThreadSignature(); return unLockLater(key, signature, expireSecond); }
public boolean tryMacLock(String key, long expireMillis, long timeoutMillis) { String mac = ""; return tryLock(key, mac, expireMillis, timeoutMillis); }
public boolean tryMacLockCnt(String key, @Min(1) int tryLockCnt, long expireMillis) { String mac = ""; return tryLockCnt(key, mac, tryLockCnt, expireMillis); }
public boolean unMacLock(String key) { String mac = ""; return unLock(key, mac); }
public boolean isExist(String key) { String lockKey = generateKey(key); return redisTemplate.hasKey(lockKey); }
private boolean tryLock(String key, String requesterId, long expireMillis, long timeoutMillis) { String lockKey = generateKey(key); return (Boolean) redisTemplate.execute(new RedisCallback<Object>() { @Override public Object doInRedis(RedisConnection redisConnection) throws DataAccessException { long expireAt = System.currentTimeMillis() + expireMillis + 1; Boolean acquire = redisConnection.setNX(lockKey.getBytes(), String.valueOf(expireAt).getBytes()); if (acquire) { return true; } else { byte[] value = redisConnection.get(lockKey.getBytes()); if (Objects.nonNull(value) && value.length > 0) { long expireTime = Long.parseLong(new String(value)); if (expireTime < System.currentTimeMillis()) { byte[] oldValue = redisConnection.getSet(lockKey.getBytes(), String.valueOf(System.currentTimeMillis() + expireMillis + 1).getBytes()); return Long.parseLong(new String(oldValue)) < System.currentTimeMillis(); } } } return false; } }); }
private boolean tryLockCnt(String key, String requesterId, @Min(1) int tryLockCnt, long expireMillis) { int i = 0; while (i < tryLockCnt) { boolean tryLock = tryLock(key, requesterId, expireMillis, 0L); if (tryLock) { return true; } i++; if (i == tryLockCnt) { return false; } try { Thread.sleep(100L); } catch (InterruptedException e) { log.warn("获得分布式锁时,尝试睡眠失败", e); } } return false; }
private boolean unLock(String key, String requesterId) { String lockKey = generateKey(key); return redisTemplate.delete(lockKey); }
private boolean unLockLater(String key, String requesterId, long expireSecond) { String lockKey = generateKey(key); Boolean expire = redisTemplate.expire(lockKey, expireSecond, TimeUnit.SECONDS); return null == expire ? false : expire; }
private String getThreadSignature() { String mac = ""; String runtimeMxBeanName = ""; String currentThreadId = String.valueOf(Thread.currentThread().getId()); return mac + "_" + runtimeMxBeanName + "_" + currentThreadId; }
private String generateKey(String key) { return key; }
}
public class AopUtil {
public static Class getClassFromJoinPoint(ProceedingJoinPoint point) { return point.getTarget().getClass(); }
public static Method getMethodFromJoinPoint(ProceedingJoinPoint point) { Signature signature = point.getSignature(); MethodSignature methodSignature = (MethodSignature) signature; return methodSignature.getMethod(); }
public static Object[] getMethodArgsFromJoinPoint(ProceedingJoinPoint point) { return point.getArgs(); }
public static MethodSignature getMethodSignature(ProceedingJoinPoint point) { if (null == point) { return null; } Signature pointSignature = point.getSignature(); if (!(pointSignature instanceof MethodSignature)) { return null; } return (MethodSignature) pointSignature; }
public static String getClassName(ProceedingJoinPoint point) { if (null == point) { return ""; } Object target = point.getTarget(); if (null == target) { return ""; } Class<?> aClass = target.getClass(); if (null == aClass) { return ""; } return aClass.getName(); }
public static <T> T parseSpelKey(String key, Method method, Object[] args, Class<T> clazz) {
if (StrUtil.isEmpty(key)) { return null; }
LocalVariableTableParameterNameDiscoverer u = new LocalVariableTableParameterNameDiscoverer(); String[] paraNameArr = u.getParameterNames(method);
ExpressionParser parser = new SpelExpressionParser(); StandardEvaluationContext context = new StandardEvaluationContext(); for (int i = 0; i < paraNameArr.length; i++) { context.setVariable(paraNameArr[i], args[i]); } return parser.parseExpression(key).getValue(context, clazz); } }
|