Explorar el Código

[优化]缓存key增加token参数

release_toaliyun_real
bruce hace 6 años
committed by Stormeye Wu
padre
commit
88de7a9a56
Se han modificado 2 ficheros con 4 adiciones y 4 borrados
  1. +2
    -2
      mallinkBApi/src/main/java/com/iformall/aop/RedisCacheAspect.java
  2. +2
    -2
      mallinkCApi/src/main/java/com/iformall/aop/RedisCacheAspect.java

+ 2
- 2
mallinkBApi/src/main/java/com/iformall/aop/RedisCacheAspect.java Ver fichero

@@ -95,9 +95,9 @@ public class RedisCacheAspect {
// 接口路径 reqPath => /api/xxx // 接口路径 reqPath => /api/xxx
String reqPath = requestUrl.substring(requestUrl.indexOf("/api/")); String reqPath = requestUrl.substring(requestUrl.indexOf("/api/"));
if (cache.md5()) { if (cache.md5()) {
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, HashUtil.md5(StringUtils.join(args, DELIMITER_PARAMS)));
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, HashUtil.md5(StringUtils.join(token,args, DELIMITER_PARAMS)));
} else { } else {
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, StringUtils.join(args, DELIMITER_PARAMS));
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, StringUtils.join(token,args, DELIMITER_PARAMS));
} }
} else { } else {
redisKey = cache.key(); redisKey = cache.key();


+ 2
- 2
mallinkCApi/src/main/java/com/iformall/aop/RedisCacheAspect.java Ver fichero

@@ -92,9 +92,9 @@ public class RedisCacheAspect {
// 接口路径 reqPath => /api/xxx // 接口路径 reqPath => /api/xxx
String reqPath = requestUrl.substring(requestUrl.indexOf("/api/")); String reqPath = requestUrl.substring(requestUrl.indexOf("/api/"));
if (cache.md5()) { if (cache.md5()) {
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, HashUtil.md5(StringUtils.join(args, DELIMITER_PARAMS)));
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, HashUtil.md5(StringUtils.join(token,args, DELIMITER_PARAMS)));
} else { } else {
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, StringUtils.join(args, DELIMITER_PARAMS));
redisKey = StringUtils.join(reqPath, DELIMITER_KEY, tenantId, DELIMITER_KEY, StringUtils.join(token,args, DELIMITER_PARAMS));
} }
} else { } else {
redisKey = cache.key(); redisKey = cache.key();


Cargando…
Cancelar
Guardar