Spring Security :@preauthorized(hasauthority),参数为list

tjrkku2a  于 2021-06-27  发布在  Java
关注(0)|答案(1)|浏览(436)

是否可以将@preauthorize和hasauthority与值列表一起使用?

@PostMapping("/post")
@PreAuthorize("hasAuthority(#parameters.list)")
public Dto myController() {
   //code here
}
koaltpgm

koaltpgm1#

为什么不使用hasanyauthority?
哪一个是你的用例?

相关问题