We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. I think there is a typo in https://github.com/cescoffier/reactive-systems-in-java/blob/main/chapter-7/order-example/src/main/java/org/acme/ShopResource.java, method createUser (got MethodNotAllowed response). There should be no {name} in @Path (you use QueryParam instead of PathParam). It should be
createUser
@Path
@POST @Path("/users") public Uni<Long> createUser(@QueryParam("name") String name) {}
I removed {name} from @Path and everything works fine.
{name}
That typo appears in book (Example 7-8), page 130 as well.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi.
I think there is a typo in https://github.com/cescoffier/reactive-systems-in-java/blob/main/chapter-7/order-example/src/main/java/org/acme/ShopResource.java, method
createUser
(got MethodNotAllowed response). There should be no {name} in@Path
(you use QueryParam instead of PathParam). It should beI removed
{name}
from@Path
and everything works fine.That typo appears in book (Example 7-8), page 130 as well.
The text was updated successfully, but these errors were encountered: