Is there not a better way to preserve the content of this exception? Either by outputting log message or passing as query param or something?
@RequestMapping(value="/{providerId}",...
Type: Posts; User: crcain; Keyword(s):
Is there not a better way to preserve the content of this exception? Either by outputting log message or passing as query param or something?
@RequestMapping(value="/{providerId}",...
Forgot to name a second requirement which is, if an authenticated user attempts to access a resource for which they don't have permission, redirect to the appropriate login page rather than a 403.
...
My goal is to have two paths, "/pub" and "/admin", where ROLE_USER can access the former and ROLE_ADMIN the latter. Each path should have it's own login/logout pages. I've accomplished this with the...