私の facelet には、以下の commandLink があります。
<h:form>
<p:commandLink id="excelExport" action="#{studentBean.exportReport()}" ajax="false">
<f:param name="type" value="EXCEL" />
<p:graphicImage library="img" name="excel.png" width="20" />
</p:commandLink>
</h:form>
これは、バッキング Bean にあるものです。
@ManagedBean
@RequestScoped
public class StudentBean implements Serializable {
.............
@ManagedProperty(value = "#{param.type}")
private String typeOfExport;
.............
public void preRender(ComponentSystemEvent event) {
System.out.println("Inside prerender");
if (FacesHelper.isAjaxRequest()) {
return;
}
}
.............
public void exportReport() {
System.out.println("Type of Report is: " + typeOfExport);
}
}
commandLink をクリックしたら、exportReport メソッドを実行したいと思います。しかし、ここで起こっていることは、メソッドを実行した後、再び preRender を実行しようとしているということです。フォーム全体を再度レンダリングしたくありません。私がここでやっている間違いは何ですか?