Spring EL (SpEL) 可以配置为忽略表达式中间的空对象吗
如果我有表达式: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用安全导航运算符
?.
(在您的示例中为obj1?.obj2?.obj3
)以避免令人讨厌的NullPointerException
在浏览 beans 图表时。您可以在参考
You should use safe navigation operator that is
?.
(in your example that'd beobj1?.obj2?.obj3
) to avoid nastyNullPointerException
while navigating graph of beans.You can find detailed explanation and some examples in chapter 6.5.15 Safe Navigation operator of reference