Home > other >  Spring ws-security permitAll () and anonymous () what is the difference
Spring ws-security permitAll () and anonymous () what is the difference

Time:11-17




Anonymous () to allow anonymous users to access
Unconditional permitAll () allows access to

Both what is the difference, not can access when login

CodePudding user response:


Certificate authority

CodePudding user response:

Anonymous () to allow anonymous users to access and not allowed to have login user access
PermitAll () regardless of the login, not login can visit

PermitAll () : Always evaluates to true
IsAnonymous () : Returns true if the current principal is an anonymous user
  • Related