Achim Heiland

Results 2 issues of Achim Heiland

Hi, i tried to create a meta annotation (http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-meta-annotations) that uses spring retry and metrics-spring: ``` java @Inherited @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @Metered @ExceptionMetered(cause = RuntimeException.class) @Retryable(include = { DuplicateKeyException.class, OptimisticLockingFailureException.class})...

This is a good starting point for enabling meta annotations. There are 2 tests (CovariantReturnTypeTest + MeteredInterfaceTest) that will break because annotations at interface level will now be taken into...