Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Improved error message #436

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static int getPayloadParameterIndex(
int payloadAnnotatedParameterIndex = getPayloadAnnotatedParameterIndex(parameterAnnotations);
if (payloadAnnotatedParameterIndex == -1) {
String msg =
"Multi-parameter KafkaListener methods must have one parameter annotated with @Payload, "
"Multi-parameter AsyncListener methods must have one parameter annotated with @Payload, "
+ "but none was found: "
+ methodName;

Expand All @@ -68,8 +68,7 @@ static int getPayloadParameterIndex(
static int getPayloadAnnotatedParameterIndex(Annotation[][] parameterAnnotations) {
for (int i = 0, length = parameterAnnotations.length; i < length; i++) {
Annotation[] annotations = parameterAnnotations[i];
boolean hasPayloadAnnotation =
Arrays.stream(annotations).anyMatch(annotation -> annotation instanceof Payload);
boolean hasPayloadAnnotation = Arrays.stream(annotations).anyMatch(Payload.class::isInstance);

if (hasPayloadAnnotation) {
return i;
Expand Down