是否可以将@preauthorize和hasauthority与值列表一起使用?
@PostMapping("/post")@PreAuthorize("hasAuthority(#parameters.list)")public Dto myController() { //code here}
@PostMapping("/post")
@PreAuthorize("hasAuthority(#parameters.list)")
public Dto myController() {
//code here
}
koaltpgm1#
为什么不使用hasanyauthority?哪一个是你的用例?
1条答案
按热度按时间koaltpgm1#
为什么不使用hasanyauthority?
哪一个是你的用例?