我想要替代GrantedAuthorityImpl()类。我想在 Spring 安全实现中做到这一点。 GrantedAuthorityImpl()类已弃用。因此,我想要一个替代解决方案。
我的代码:
public Collection<GrantedAuthority> getAuthorities(Integer access) {
List<GrantedAuthority> authList = new ArrayList<GrantedAuthority>(2);
if (access.compareTo(1) == 0) {
authList.add(new GrantedAuthorityImpl("ROLE_ADMIN"));
}
else{
authList.add(new GrantedAuthorityImpl("ROLE_USER"));
}
return authList;
}
最佳答案
不推荐使用该类GrantedAuthorityImpl-您可以改用SimpleGrantedAuthority:
public Collection<GrantedAuthority> getAuthorities(Integer access) {
List<GrantedAuthority> authList = new ArrayList<GrantedAuthority>(2);
if (access.compareTo(1) == 0) {
authList.add(new SimpleGrantedAuthority("ROLE_ADMIN"));
}
else{
authList.add(new SimpleGrantedAuthority("ROLE_USER"));
}
return authList;
}