You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@sendto annotation must be scanned for method in abstract class
Current Behavior
@KafkaListener scanned in abstract class(because use AnnotationUtils.findAnnotation), but @sendto can't scanned (because use SendTo ann = AnnotationUtils.getAnnotation(replyingMethod, SendTo.class);)
Context
The text was updated successfully, but these errors were encountered:
Resolvesspring-projects#2304
`@SendTo` was only detected on the concrete listener method.
Use `AnnotatedElementUtils.findMergedAnnotation()` instead.
**cherry-pick to 2.9.x, 2.8.x**
Resolvesspring-projects#2304
`@SendTo` was only detected on the concrete listener method.
Use `AnnotatedElementUtils.findMergedAnnotation()` instead.
**cherry-pick to 2.9.x, 2.8.x**
Resolves#2304
`@SendTo` was only detected on the concrete listener method.
Use `AnnotatedElementUtils.findMergedAnnotation()` instead.
**cherry-pick to 2.9.x, 2.8.x**
Resolves#2304
`@SendTo` was only detected on the concrete listener method.
Use `AnnotatedElementUtils.findMergedAnnotation()` instead.
**cherry-pick to 2.9.x, 2.8.x**
Resolves#2304
`@SendTo` was only detected on the concrete listener method.
Use `AnnotatedElementUtils.findMergedAnnotation()` instead.
**cherry-pick to 2.9.x, 2.8.x**
Expected Behavior
@sendto annotation must be scanned for method in abstract class
Current Behavior
@KafkaListener scanned in abstract class(because use AnnotationUtils.findAnnotation), but @sendto can't scanned (because use SendTo ann = AnnotationUtils.getAnnotation(replyingMethod, SendTo.class);)
Context
The text was updated successfully, but these errors were encountered: