JSF 页面之间传值

 1JSF(myfaces1.1.5)页面之间传值 
 2
 3
 4<h:dataTable var="item" value="#{list}"> 
 5<h:column> 
 6  <f:facet> 
 7    <h:commandlink action="#{xxxx.yyyy}"> 
 8      <f:param name="id" value="item.id"/> 
 9    </h:commandlink> 
10  </f:facet> 
11</h:comlumn> 
12取值:FacesContext.getInstance().getExtentionInstance().getRequestParameterMap.get("id")
原文地址:https://www.cnblogs.com/wubiyu/p/1218796.html