Spring:使用什么解析器来解析安全表达式

发布于 2024-09-05 09:47:38 字数 136 浏览 6 评论 0原文

我想解析标准安全表达式,例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的笑 2024-09-12 09:47:38

最简单的方法是使用 标签并修改其主体内所需的变量。

如果您确实想手动计算表达式,请查看 AuthorizeTag 的源代码 - 它获取类型为 WebSecurtyExpressionHandler 来自 Web 应用程序上下文使用它来获取ExpressionParserEvaluationContext

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 type WebSecurtyExpressionHandler from the web application context and uses it to obtain ExpressionParser and EvaluationContext.

极致的悲 2024-09-12 09:47:38

我在这里发布了该主题的答案 - 如何以编程方式解析 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文