识别并解决javax.el.PropertyNotFoundException:
当尝试在EL中引用托管bean时#{bean.entity.property},有时会javax.el.PropertyNotFoundException: Target Unreachable抛出异常,通常是在设置bean属性时,或者要调用bean操作时。
#{bean.entity.property}
javax.el.PropertyNotFoundException: Target Unreachable
似乎有五种不同的消息:
目标无法访问,标识符'bean'已解析为null
目标无法访问,'entity'返回null
目标无法访问,'null'返回null
目标无法访问,''0'返回null
目标无法访问,'BracketSuffix'返回null
这些都意味着什么?它们是如何引起的,它们应该如何解决?
相关分类