2
如果我在JSF2的頁面上有一個請求範圍bean ....我如何將它傳遞給另一個頁面(我在Spring中使用JSF2)?將請求範圍的bean從一個頁面傳遞到另一個頁面
我試過以下,但它不工作:
<h:commandButton action="complete.xhtml?faces-redirect=true" value="Confirm Booking">
<f:setPropertyActionListener target="#{quoteHolder.item}" value="#{quoteHolder.item}"/>
</h:commandButton>