GrantedAuthorityImpl() 类的替代方案
Posted
技术标签:
【中文标题】GrantedAuthorityImpl() 类的替代方案【英文标题】:alternative to GrantedAuthorityImpl() class 【发布时间】:2012-12-11 17:42:48 【问题描述】:我想要一个 GrantedAuthorityImpl() 类的替代品。我希望在春季安全实施中做到这一点。 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;
【问题讨论】:
Spring Security 版本 3.1.3 【参考方案1】: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;
【讨论】:
以上是关于GrantedAuthorityImpl() 类的替代方案的主要内容,如果未能解决你的问题,请参考以下文章
C++初阶:类和对象(上篇)类的定义 | 类的访问限定符及封装 | 类的作用域 | 类的实例化 | 类对象模型 | this指针