@Post don't work
#49741
Replies: 1 comment 2 replies
-
it's hard to say with just the snippet of code; if you can add a reproducer we can give you an help |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, my post never works (also with swaggerUI), can some one tell me how i have to fix it please : @post
@path("/greet")
@consumes(MediaType.APPLICATION_JSON)
public Response greetUser(Item item) {
String message = "Hello, " + item.getName() + "!";
return Response.ok(message).build();
}
Beta Was this translation helpful? Give feedback.
All reactions