SpringSecurity设置角色和权限的注意点

在UserDetailsService的loadUserByUsername方法里去构建当前登陆的用户时,你可以选择两种授权方法,即角色授权和权限授权,对应使用的代码是hasRole和hasAuthority,而这两种方式在设置时也有不同,下面介绍一下:

角色授权:授权代码需要加ROLE_前缀,controller上使用时不要加前缀
权限授权:设置和使用时,名称保持一至即可
使用,mock代码
@Component
public class MyUserDetailService implements UserDetailsService {
@Autowired
private PasswordEncoder passwordEncoder;

@Override
public UserDetails loadUserByUsername(String name) throws UsernameNotFoundException {
User user = new User(name,
passwordEncoder.encode(“123456”),
AuthorityUtils.commaSeparatedStringToAuthorityList(“read,ROLE_USER”));//设置权限和角色
// 1. commaSeparatedStringToAuthorityList放入角色时需要加前缀ROLE_,而在controller使用时不需要加ROLE_前缀
// 2. 放入的是权限时,不能加ROLE_前缀,hasAuthority与放入的权限名称对应即可
return user;
}
}
上面使用了两种授权方法,大家可以参考。

在controller中为方法添加权限控制
@GetMapping("/write")
@PreAuthorize(“hasAuthority(‘write’)”)
public String getWrite() {
return “have a write authority”;
}

@GetMapping("/read")
@PreAuthorize(“hasAuthority(‘read’)”)
public String readDate() {
return “have a read authority”;
}

@GetMapping("/read-or-write")
@PreAuthorize(“hasAnyAuthority(‘read’,‘write’)”)
public String readWriteDate() {
return “have a read or write authority”;
}

@GetMapping("/admin-role")
@PreAuthorize(“hasRole(‘admin’)”)
public String readAdmin() {
return “have a admin role”;
}

@GetMapping("/user-role")
@PreAuthorize(“hasRole(‘USER’)”)
public String readUser() {
return “have a user role”;
}
网上很多关于hasRole和hasAuthority的文章,很多都说二者没有区别,但大叔认识,这是spring设计者的考虑,两种性质完成独立的东西,不存在任何关系,一个是用做角色控制,一个是操作权限的控制,二者也并不矛盾。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值