com.jarvis.cache.interceptor.CacheMethodInterceptor Maven / Gradle / Ivy
package com.jarvis.cache.interceptor;
import java.lang.reflect.Method;
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.aop.support.AopUtils;
import com.jarvis.cache.CacheHandler;
import com.jarvis.cache.annotation.Cache;
import com.jarvis.cache.interceptor.aopproxy.CacheAopProxy;
import com.jarvis.cache.util.AopUtil;
/**
* 对@Cache 拦截注解
* @author jiayu.qiu
*/
public class CacheMethodInterceptor implements MethodInterceptor {
private static final Logger logger=LoggerFactory.getLogger(CacheMethodInterceptor.class);
private final CacheHandler cacheHandler;
public CacheMethodInterceptor(CacheHandler cacheHandler) {
this.cacheHandler=cacheHandler;
}
@Override
public Object invoke(MethodInvocation invocation) throws Throwable {
Class> cls=AopUtil.getTargetClass(invocation.getThis());
Method method=invocation.getMethod();
if(!cls.equals(invocation.getThis().getClass())) {
logger.debug(invocation.getThis().getClass() + "-->" + cls);
return invocation.proceed();
}
logger.debug(invocation.toString());
if(method.isAnnotationPresent(Cache.class)) {
Cache cache=method.getAnnotation(Cache.class);
logger.debug(invocation.getThis().getClass().getName() + "." + method.getName() + "-->@Cache");
return cacheHandler.proceed(new CacheAopProxy(invocation), cache);
} else {
Method specificMethod=AopUtils.getMostSpecificMethod(method, invocation.getThis().getClass());
if(specificMethod.isAnnotationPresent(Cache.class)) {
Cache cache=specificMethod.getAnnotation(Cache.class);
logger.debug(invocation.getThis().getClass().getName() + "." + specificMethod.getName() + "-->@Cache");
return cacheHandler.proceed(new CacheAopProxy(invocation), cache);
}
}
return invocation.proceed();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy