|
|
|
@@ -95,9 +95,9 @@ public class RedisCacheAspect { |
|
|
|
// 接口路径 reqPath => /api/xxx |
|
|
|
String reqPath = requestUrl.substring(requestUrl.indexOf("/api/")); |
|
|
|
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 { |
|
|
|
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 { |
|
|
|
redisKey = cache.key(); |
|
|
|
|