为什么是 javax.el.PropertyNotFoundException:?
javax.el.PropertyNotFoundException:/WEB-INF/flows/claimant/check/wireForm.xhtml @52,165 value =“#{checkViewModel.check.wireInfo.originationInfo.referenceNo}”:目标无法访问,'originationInfo'在'com上返回null .bfds.saec.domain.WireInfo'
javax.el.PropertyNotFoundException: /WEB-INF/flows/claimant/check/wireForm.xhtml @52,165 value="#{checkViewModel.check.wireInfo.originationInfo.referenceNo}": Target Unreachable, 'originationInfo' returned null on 'com.bfds.saec.domain.WireInfo'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该错误只是表明从您的 bean
com.bfds.saec.domain.WireInfo
返回的originationInfo
值是 NULL。您需要确保返回非空值。The error just says that the value returned for
originationInfo
from your beancom.bfds.saec.domain.WireInfo
is NULL. You need to ensure that a non-null value is returned.