From 3e4818d8423539e3af50a7164070e301bb9031e0 Mon Sep 17 00:00:00 2001 From: macro Date: Mon, 25 Jul 2022 17:17:51 +0800 Subject: [PATCH] Update RedisCacheAspect.java --- .../java/com/macro/mall/security/aspect/RedisCacheAspect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mall-security/src/main/java/com/macro/mall/security/aspect/RedisCacheAspect.java b/mall-security/src/main/java/com/macro/mall/security/aspect/RedisCacheAspect.java index abd8d9e..4f60194 100644 --- a/mall-security/src/main/java/com/macro/mall/security/aspect/RedisCacheAspect.java +++ b/mall-security/src/main/java/com/macro/mall/security/aspect/RedisCacheAspect.java @@ -22,7 +22,7 @@ import java.lang.reflect.Method; @Component @Order(2) public class RedisCacheAspect { - private static Logger LOGGER = LoggerFactory.getLogger(RedisCacheAspect.class); + private static final Logger LOGGER = LoggerFactory.getLogger(RedisCacheAspect.class); @Pointcut("execution(public * com.macro.mall.portal.service.*CacheService.*(..)) || execution(public * com.macro.mall.service.*CacheService.*(..))") public void cacheAspect() {