f:param
とうまく機能しますが、またはとはうまくいきh:link
ません。p:commandLink
h:commandLink
たとえば、2 つのページtest_first.xhtml
とtest_second.xhtml
、およびバッキング Java Bean がありTestBean.java
ます。
私は走り始めますtest_first.xhtml
。
をクリックlink1
するh:link
と、ページは にリダイレクトされtest_second.xhtml
ます。の助けを借りてf:param
、ブラウザのアドレスバーが表示され.../test_second.xhtml?id=1
ます。そのページに、testBean.userId
印刷されます。
link2
またはをクリックするlink3
と、ページは にリダイレクトされtest_second.xhtml
ます。ただし、アドレスバー.../test_second.xhtml
には のみが表示され、 NO ?id=#
!はありません。そしてtestBean.userId
、そのページには印刷されません。
どうすればcommandLink
動作しf:param
ますか? リンクを別のページにリダイレクトするのではなく、データに応じて Bean のいくつかのメソッドを呼び出したい場合があります。
test_first.xhtml:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head/>
<h:body>
<h:form>
<h:link value="link1" outcome="test_second" >
<f:param name="id" value="1"/>
</h:link>
<br/><br/>
<h:commandLink value="link2" action="test_second?faces-redirect=true" >
<f:param name="id" value="2" />
</h:commandLink>
<br/><br/>
<p:commandLink value="link3" action="test_second?faces-redirect=true">
<f:param name="id" value="3" />
</p:commandLink>
<br/><br/>
</h:form>
</h:body>
</html>
test_second.xhtml:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<f:metadata>
<f:viewParam name="id" value="#{testBean.userId}" />
</f:metadata>
<h:head/>
<h:body>
<h:form>
This is the second page.
<h:outputText value="Selected id is #{testBean.userId}" />
<h:commandButton value="Print page id" action="#{testBean.print()}" />
</h:form>
</h:body>
</html>
TestBean.java
@ManagedBean
@SessionScoped
public class TestBean implements Serializable{
private Integer userId;
public void print() {
System.out.println(userId);
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
}