Why javax.el.PropertyNotFoundException:?
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'
The error just says that the value returned for originationInfo
from your bean com.bfds.saec.domain.WireInfo
is NULL. You need to ensure that a non-null value is returned.
精彩评论