
fun.fengwk.convention4j.springboot.starter.cache.CacheSupportPointcut Maven / Gradle / Ivy
package fun.fengwk.convention4j.springboot.starter.cache;
import fun.fengwk.convention4j.springboot.starter.cache.annotation.CacheSupport;
import org.springframework.aop.ClassFilter;
import org.springframework.aop.MethodMatcher;
import org.springframework.aop.Pointcut;
import org.springframework.core.annotation.AnnotationUtils;
import java.lang.reflect.Method;
/**
* @author fengwk
*/
public class CacheSupportPointcut implements Pointcut {
@Override
public ClassFilter getClassFilter() {
return clazz -> AnnotationUtils.findAnnotation(clazz, CacheSupport.class) != null;
}
@Override
public MethodMatcher getMethodMatcher() {
return new MethodMatcher() {
@Override
public boolean matches(Method method, Class> targetClass) {
return true;
}
@Override
public boolean isRuntime() {
return false;
}
@Override
public boolean matches(Method method, Class> targetClass, Object... args) {
throw new UnsupportedOperationException();
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy