使用 Spring EL 的复杂表达式(条件和括号)
我正在使用带有 spring security 的 spring-EL
是否可以使用括号制作“复杂”条件表达式?
@PreAuthorize("( hasRole('ROLE_USER') and ( isOwnerDocumentUUID( #docUuids ) ) or hasRole('ROLE_ADMIN') ")
抛出 java.lang.IllegalArgumentException:
解析表达式失败
,但
@PreAuthorize("hasRole('ROLE_USER') and ( isOwnerDocumentUUID( #docUuids ) ")
已被接受。
I'm using spring-EL with spring security
Is it possible to make 'complex' conditional expressions with parentesis?
@PreAuthorize("( hasRole('ROLE_USER') and ( isOwnerDocumentUUID( #docUuids ) ) or hasRole('ROLE_ADMIN') ")
throw an java.lang.IllegalArgumentException:
Failed to parse expression
but
@PreAuthorize("hasRole('ROLE_USER') and ( isOwnerDocumentUUID( #docUuids ) ")
is accepted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还有一个额外的
(
,以下内容应该有效:You have one extra
(
, the following should work: