EL 会自动转换/转换类型吗? ${a.name} 实际上是如何工作的?

发布于 2024-12-06 00:37:45 字数 197 浏览 1 评论 0原文

我有一个声明为 Object a 类型的变量,它实际上引用了 A 类型的实例。

在 EL 中,我可以直接使用以下表达式来打印 A 类型的 name 属性:

${a.name}

它是如何工作的?

I have a variable declared as type Object a which actually refers an instance of type A.

In EL, I can directly use the following expression to print the name property of type A:

${a.name}

How does it work?

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

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

发布评论

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

评论(2

简美 2024-12-13 00:37:45

EL 在底层使用 反射,通常通过 javax.beans.Introspector API

这就是它在 ${a.name} 上的大致作用。

// EL will breakdown the expression.
String base = "a";
String property = "name";

// Then EL will find the object and getter and invoke it.
Object object = pageContext.findAttribute(base);
String getter = "get" + property.substring(0, 1).toUpperCase() + property.substring(1);
Method method = object.getClass().getMethod(getter, new Class[0]);
Object result = method.invoke(object);

// Now EL will print it (only when not null).
out.println(result);

它不会以任何方式转换/转换类型。

另请参阅:

EL uses reflection under the hoods, usually via javax.beans.Introspector API.

This is what it roughly does under the covers on ${a.name}.

// EL will breakdown the expression.
String base = "a";
String property = "name";

// Then EL will find the object and getter and invoke it.
Object object = pageContext.findAttribute(base);
String getter = "get" + property.substring(0, 1).toUpperCase() + property.substring(1);
Method method = object.getClass().getMethod(getter, new Class[0]);
Object result = method.invoke(object);

// Now EL will print it (only when not null).
out.println(result);

It does not convert/cast the type in any way.

See also:

岁月打碎记忆 2024-12-13 00:37:45

这是因为 name 是对象 a 的属性,并且该对象可能也是一个 JavaBean(不要与 Enterprise JavaBean 混淆)。

请参阅此处了解表达式语言文档和此处查看简短教程。

It's because name is a property of the object a, and probably the object is also a JavaBean (not to be confused with Enterprise JavaBean).

See here for Expression Language Documentation and here for a short tutorial.

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