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

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

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

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

koaltpgm1#

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

相关问题