Found URL: https://docs.spring.io/spring-security/site/migrate/current/3-to-4/html5/migrate-3-to-4-xml.html#m3to4-deprecations-core-gai
4.5.10. GrantedAuthorityImpl
GrantedAuthorityImpl
was removed in favor of SimpleGrantedAuthority
or implementing your own. For example:new GrantedAuthorityImpl(role);
should be replaced with
new SimpleGrantedAuthority(role);
No comments:
Post a Comment