在JSF2.0项目中,我使用一个带有CDI Bean的xhtml页面(@ Named,@ viewScoped作为批注)。当我想在此xhtml页面中保存表单时,得到了
javax.servlet.ServletException:objectType.xhtml @ 33,65 value =“#{beanController.object.serialNumber}”:无法到达目标, 'null'返回null JSF2.0。
此处提供示例代码以说明更多内容
<h:form id="form1" enctype="multipart/form-data">
<h:panelGrid columns="3" columnClasses="titleCell">
<h:outputLabel for="id1" value=" serialNumber" />
<h:inputText id="id1" value="#{beanController.object.serialNumber}">
</h:inputText>
<h:message for="id1" style="color:red" />
</h:panelGrid>
</h:form>
在控制器中,我声明并初始化了对象'object',例如Object object = new Object();
请问如何报告此问题?
致谢