从 Spring Security 表达式调用静态方法?

发布于 2024-12-07 07:27:41 字数 699 浏览 1 评论 0 原文

我正在寻找一种扩展 Spring Security Expressions 以支持现有安全基础设施的方法。我知道您可以按照所述扩展 MethodSecurityExpressionRoot 这里,但我也发现参考通过 Spring 表达式语言(Spring EL 或 SpEL)直接调用静态方法。不幸的是,Spring Expression 方法的官方页面并没有不直接描述如何做到这一点。

如何通过 Spring Expression 方法调用静态方法?

I'm looking for a way to extend Spring Security Expressions to support an existing security infrastructure. I'm aware you can extend the MethodSecurityExpressionRoot as described here, but I also found reference to directly calling static methods through Spring Expression Language (Spring EL or SpEL). Unfortunately the official page on Spring Expression methods doesn't directly describe how to do this.

How can I invoke a static method through Spring Expression methods?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风和你 2024-12-14 07:27:41

通过使用 T(完全.qualified.name).methodName()语法

您可以使用特殊的T运算符来指定java.lang.Class(类型)的实例。静态方法也可以使用此运算符来调用。 StandardEvaluationContext 使用 TypeLocator 来查找类型,并且 StandardTypeLocator(可以替换)是在了解 java 的基础上构建的.lang 包。这意味着 T() 对 java.lang 中类型的引用不需要完全限定,但所有其他类型引用必须是完全限定的。

T 元素返回对类型的引用而不是实例。例如,Collections.singleton("Hello") 的等效项是

T(java.util.Collections).singleton('Hello')

By using the T(fully.qualified.name).methodName() syntax:

You can use the special T operator to specify an instance of java.lang.Class (the type). Static methods are invoked by using this operator as well. The StandardEvaluationContext uses a TypeLocator to find types, and the StandardTypeLocator (which can be replaced) is built with an understanding of the java.lang package. This means that T() references to types within java.lang do not need to be fully qualified, but all other type references must be.

The T element returns a reference to the type instead of an instance. For example, the equivalent of Collections.singleton("Hello") is

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