-
Bug
-
Resolution: Done
-
Minor
-
DO378 - RHBoQ1.11-en-5-20220907
-
None
-
2
-
ROLE
-
en-US (English)
URL: https://role.rhu.redhat.com/rol-rhu/app/courses/do378-1.11/pages/ch02s03
Reporter RHNID: sdavies
Section: implement-rest-lecture - Implementing a JSON Microservice with CDI and JAX-RS
Language: en-US (English)||
Workaround:
Description: Description: Under heading "Using JAX-RS in Quarkus", in the ExampleResource example, method greet(@PathParam...). Method won't compile due to illegal quote structure. Use String concatenation: @GET @Path("/{name}") public String greet(@PathParam("name") String name) { return "Hello " + name + "!"; }