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
VertxRsServer uses "/rest" as default root url for resteasy endpoints, however the javax.ws.rs.core.Application provided to build the resteasy context does not have an @ApplicationPath, this results in resources not being resolved correctly.
Resteasy looks for an url matching /authentication/login and not /rest/authentication/login
If configured with an empty jaxrs path, the application works correctly but then I cannot use a context (like /api) for my resources Config config = Config .newBuilder() .withJaxrsPath("") .build(); VertxRsServer.newBuilder() .withConfig(config) .build();
The error happens in org.jboss.resteasy.core.registry.ClassNode#potentials
parameters:
path: /rest/authentication/login
start: 1
matches: empty
children: { "authentication" -> ClassNode: segment="authentication" }
The text was updated successfully, but these errors were encountered:
VertxRsServer uses "/rest" as default root url for resteasy endpoints, however the javax.ws.rs.core.Application provided to build the resteasy context does not have an @ApplicationPath, this results in resources not being resolved correctly.
Resteasy looks for an url matching /authentication/login and not /rest/authentication/login
If configured with an empty jaxrs path, the application works correctly but then I cannot use a context (like /api) for my resources
Config config = Config .newBuilder() .withJaxrsPath("") .build(); VertxRsServer.newBuilder() .withConfig(config) .build();
The error happens in org.jboss.resteasy.core.registry.ClassNode#potentials
parameters:
path: /rest/authentication/login
start: 1
matches: empty
children: { "authentication" -> ClassNode: segment="authentication" }
The text was updated successfully, but these errors were encountered: