Spring EL (SpEL) 可以配置为忽略表达式中间的空对象吗

发布于 2024-11-10 11:47:41 字数 90 浏览 4 评论 0原文

如果我有表达式: obj1.obj2.obj3

并且 obj2 为 null,则表达式失败并出现异常。有没有办法将 SpEL 配置为仅返回 null?

If I have the expression: obj1.obj2.obj3

And obj2 is null, then expression fails with an exception. Is there any way to configure SpEL to just return null?

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

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

发布评论

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

评论(1

素衣风尘叹 2024-11-17 11:47:42

您应该使用安全导航运算符 ?. (在您的示例中为 obj1?.obj2?.obj3)以避免令人讨厌的 NullPointerException 在浏览 beans 图表时。

您可以在参考

You should use safe navigation operator that is ?. (in your example that'd be obj1?.obj2?.obj3) to avoid nasty NullPointerException while navigating graph of beans.

You can find detailed explanation and some examples in chapter 6.5.15 Safe Navigation operator of reference

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