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
With no JAX-RS Application class defined and a resource class annotated with @path("/"), one would expect the default @get method to be called with "curl localhost:8080/". However, a 403 FORBIDDEN is returned. The result is that JAX-RS endpoints cannot be defined at "/".
Manually defining an Application class with an @ApplicationPath("/") does not fix the issue. Same 403 error.
Applications should be able to define endpoints at "/". This approach works in Thorntail.