How to redirect a user to login page if a principal from SecurityContextHolder is found null in service layer (any place)?
I suppose it should be some interceptor or filter.
|
|
|||
|
|
|
By the time the request enters the service layer the Security Context should already be populated by one of the configured filters in your security filter chain. If it is not populated, it means either that the security filter chain is not properly configured, or the request URL is not protected by any of the configured filter chains. Check if the The filter that is responsible for handling an unauthenticated request is the |
|||||||
|