spring Boot @PreAuthorize hasAuthority和hasRole

x33g5p2x  于 2023-06-22  发布在  Spring
关注(0)|答案(1)|浏览(176)

我尝试使用@PreAuthorize("hasAuthority('READ'), hasRole('ADMIN')")抛出解析异常。
如何在Sping Boot Controller中使用hasAuthorityhasRole@PreAuthorize

cetgtptt

cetgtptt1#

这工作作为

@PreAuthorize("hasAuthority('READ') and hasRole('ADMIN')")

相关问题