Spring:使用什么解析器来解析安全表达式
我想解析标准安全表达式,例如 hasRole
等,以获取变量(在 JSP 中)中的值。我怎样才能做到这一点? SpelExpressionParser
是标准的 EL 解析器,但我认为它不会解析安全表达式。
I would like to parse standard security expressions like hasRole
etc. to get their value in a variable (in a JSP). How can I do that? SpelExpressionParser
is the standard EL parser, but I don't think it will parse the security expression.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用
标签并修改其主体内所需的变量。如果您确实想手动计算表达式,请查看
AuthorizeTag
的源代码 - 它获取类型为WebSecurtyExpressionHandler
来自 Web 应用程序上下文使用它来获取ExpressionParser
和EvaluationContext
。The simpliest approach is to use a
<sec:authorize>
tag and modify a desired variable inside its body.If you actually want to evaluate expressions manually, look at the source of
AuthorizeTag
- it gets the first bean of typeWebSecurtyExpressionHandler
from the web application context and uses it to obtainExpressionParser
andEvaluationContext
.我在这里发布了该主题的答案 - 如何以编程方式解析 Spring Security 表达式。我想这也回答了你的问题。
I've posted an answer in this topic here - How to parse spring security expressions programmatically. I think this answers your question also.