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
A Route path must start with a /. So if a user declares @Route(path = "hello") Quarkus fails during RUNTIME_INIT. I think we should prepend the slash automatically if not present. For the record - JAX-RS @Path can have both values, ie. @Path("hello") and @Path("/hello").
The text was updated successfully, but these errors were encountered:
A
Route
path must start with a/
. So if a user declares@Route(path = "hello")
Quarkus fails during RUNTIME_INIT. I think we should prepend the slash automatically if not present. For the record - JAX-RS@Path
can have both values, ie.@Path("hello")
and@Path("/hello")
.The text was updated successfully, but these errors were encountered: