Spring AOP not working for Feign Client
问题 I having an aop-setup @Target({ElementType.METHOD}) @Retention(value = RetentionPolicy.RUNTIME) public @interface IgnoreHttpClientErrorExceptions { } @Aspect @Component public class IgnoreHttpWebExceptionsAspect { @Around(value = "@annotation(annotation)", argNames = "joinPoint, annotation") public Object ignoreHttpClientErrorExceptions(ProceedingJoinPoint joinPoint, IgnoreHttpClientErrorExceptions annotation) throws Throwable { try { //do something } catch (HttpClientErrorException ex) { /