- What are the advantages to get principal as a parameter
Principal principalin spring controller and then pass it to service layer over getting principal in the service layer immediately thoughSecurityContextHolder.getContext().getAuthentication().getPrincipal()? - What is the best approach to get principal details in service layer without checking
getAuthentication()andgetPrincipal()objects for null everywhere (something like a custom wrapper)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|||||||||||
|
SecurityContextHolder.getContext().getAuthentication().getPrincipal()? After that I can use it in the service layer. – Alex Feb 14 at 0:40