admin
2021-05-19 fd59c11e6090fba2e6a5866503ad509178acc0df
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
package com.ks.lijin.aspect;
 
import com.ks.lijin.service.manager.RedisManager;
import com.ks.lijin.util.annotation.RedisCache;
import com.ks.lijin.util.annotation.RedisCacheEvict;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.reflect.MethodSignature;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.DefaultParameterNameDiscoverer;
import org.springframework.core.annotation.Order;
import org.springframework.expression.EvaluationContext;
import org.springframework.expression.Expression;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;
import org.springframework.stereotype.Component;
import org.yeshi.utils.StringUtil;
 
import javax.annotation.Resource;
import java.lang.reflect.Method;
 
@Component
@Aspect
@Order(4)
public class RedisCacheAspect {
    Logger logger = LoggerFactory.getLogger(RedisCacheAspect.class);
    @Resource
    private RedisManager redisManager;
 
 
    private ExpressionParser parser = new SpelExpressionParser();
 
    private DefaultParameterNameDiscoverer nameDiscoverer = new DefaultParameterNameDiscoverer();
 
    /**
     * 获取表达的值
     *
     * @param spELString
     * @param joinPoint
     * @return
     */
    public String generateKeyBySpEL(String spELString, ProceedingJoinPoint joinPoint) {
        MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();
        String[] paramNames = nameDiscoverer.getParameterNames(methodSignature.getMethod());
        Expression expression = parser.parseExpression(spELString);
        EvaluationContext context = new StandardEvaluationContext();
        Object[] args = joinPoint.getArgs();
        for (int i = 0; i < args.length; i++) {
            context.setVariable(paramNames[i], args[i]);
        }
        return expression.getValue(context).toString();
    }
 
    private String getRedisKey(RedisCache cache, ProceedingJoinPoint joinPoint) {
        return cache.cate() + "#" + generateKeyBySpEL(cache.key(), joinPoint);
    }
 
    private String getRedisKey(RedisCacheEvict cache, ProceedingJoinPoint joinPoint) {
        String key = cache.key();
        String keyPrefix = cache.keyPrefix();
        String cacheKey = cache.cate() + "#" + (StringUtil.isNullOrEmpty(key) ? generateKeyBySpEL(keyPrefix, joinPoint) : generateKeyBySpEL(key, joinPoint));
        return cacheKey;
    }
 
    @Around("execution(public * com.ks.app.service..*.*(..))")
    public Object requestSerializable(ProceedingJoinPoint joinPoint) throws Throwable {
        Signature signature = joinPoint.getSignature();
        MethodSignature methodSignature = (MethodSignature) signature;
        Method targetMethod = methodSignature.getMethod();
 
 
        Method realMethod = null;
        RedisCache redisCache = null;
        RedisCacheEvict[] redisCacheEvicts = null;
        try {
            realMethod = joinPoint.getTarget().getClass().getDeclaredMethod(joinPoint.getSignature().getName(),
                    targetMethod.getParameterTypes());
            if (realMethod.isAnnotationPresent(RedisCache.class)) {
                redisCache = realMethod.getAnnotation(RedisCache.class);
            } else {
                redisCacheEvicts = realMethod.getAnnotationsByType(RedisCacheEvict.class);
            }
        } catch (NoSuchMethodException e) {
            e.printStackTrace();
        } catch (SecurityException e) {
            e.printStackTrace();
        }
        if (redisCache != null) {
            String cacheKey = getRedisKey(redisCache, joinPoint);
            if (!StringUtil.isNullOrEmpty(cacheKey)) {
                try {
                    Object result = redisManager.getDataFromRedis(cacheKey);
                    if (result != null) {
                        return result;
                    }
                } catch (Exception e) {
                    logger.error("redis获取缓存出错", e.getMessage(), "key:" + cacheKey);
                }
            }
        }
 
        Object object = joinPoint.proceed();
        //不异常
        if (realMethod != null) {
            //不缓存空值
            if (redisCache != null && object != null) {
                String cacheKey = getRedisKey(redisCache, joinPoint);
                if (!StringUtil.isNullOrEmpty(cacheKey)) {
                    try {
                        redisManager.setDataToRedis(cacheKey, object, redisCache.second());
                    } catch (Exception e) {
                        logger.error("redis保存缓存数据出错", e.getMessage(), "key:" + cacheKey);
                    }
                }
            } else if (redisCacheEvicts != null && redisCacheEvicts.length > 0) {
                for (RedisCacheEvict redisCacheEvict : redisCacheEvicts) {
                    String key = redisCacheEvict.key();
                    String cacheKey = getRedisKey(redisCacheEvict, joinPoint);
                    if (!StringUtil.isNullOrEmpty(cacheKey)) {
                        try {
                            if (!StringUtil.isNullOrEmpty(key)) {
                                redisManager.remove(cacheKey);
                            } else {
                                redisManager.removePrefix(cacheKey);
                            }
                        } catch (Exception e) {
                            logger.error("redis清除缓存数据出错", e.getMessage(), "key:" + cacheKey);
                        }
                    }
                }
            }
        }
        return object;
 
    }
 
}
 
class ParamsTypeValue {
    Class<?> type;
    Object value;
 
    public ParamsTypeValue(Class<?> type, Object value) {
        this.type = type;
        this.value = value;
    }
 
    public ParamsTypeValue() {
 
    }
}