我在我的应用程序中使用 PrimeFaces,其中我有一个填充了数据的数据表。我也有一个编辑命令按钮。
现在我想打开一个新的 JSF 页面。执行此操作的操作绑定到视图范围内的支持 bean。在操作方法中,我可以访问 bean 的值,但在新的 JSF 页面上,我无法再访问该 bean 的任何值。
这是我的代码:
<p:commandLink title="Edit" id="editBtn" action="#{personRegisterController.selectPerson}">
<f:setPropertyActionListener value="#{person}" target="#{personRegisterController.personBean}"/>
</p:commandLink>