This is my Jersey Application Config:
@ApplicationPath("/ui/v1.0")
@RolesAllowed("admin")
public class AppConfig extends ResourceConfig {
public AppConfig() {
System.out.println("!!!!!! Insights v10 UI starts !!!!!....");
packages("com.test.app.ws.v10.ui");
register(SecurityFilter.class);
register(AuthenticationExceptionMapper.class);
register(RolesAllowedDynamicFeature.class);
}
}
My authentication and authorization are working properly. I want all my APIs to have restricted access for one role only and only a few exceptions for other role types. Writing @RolesAllowed("admin")
in all my web services is quite a tedious task as there are hundreds of them.
Is there a way to specify @RolesAllowed("admin")
in such a way that all the web services take this by default and I can use @PermitAll
only on the few exceptions?
You need to Override the
RolesAllowedDynamicFeature
and add a default role to every endpoint at the end of theconfigure
method if there are no other role based annotations for that endpoint.