我将一些变量从.xhtml页面发送到控制器,控制器将数据发送到另一个页面,该页面有另一个控制器处理我试图使用setter和getter的页面数据。问题是我真的不知道如何处理@PostConstruct。
XHTML文件
<h:form id="frmStart">
<p:growl id="growl" sticky="true" showDetail="true" />
<p:panel id="pnlDatos">
<p:dataTable id="tblObjeto" var="object"
value="#{parentControlador.listObjects}"
widgetVar="tblObjeto"
emptyMessage="No hay datos">
<f:facet name="header">
Objetos
</f:facet>
<p:column headerText="Contar" width="20">
<p:commandButton class="pi pi-list" id="openDialogContar" value="Ver"
action="#{parentControlador.FindItems(object)}"
/>
</p:column>
</p:dataTable>
</p:panel>
</h:form>
ParentControlador控制器代码
@Inject Item item;
public String FindItems(ObjectParent objectParent) {
String type="";
String result="";
//variable that i am going to send
ItemControlador itemControlador = new ItemControlador();
itemControlador.setCorte(objectParent);
try {
if(item.listarItemsA(objectParent.getCorte_id()).isEmpty()){
this.listaItems = item.listarItemsB(objectParent.getCorte_id());
type = "A";
}else{
this.listaItems = item.listarItemA(objectParent.getCorte_id());
type = "B";
}
this.objeto = objectParent;
result = type == "A"? "A.xhtml":"B.xhtml";
} catch (Exception e) {
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage(FacesMessage.SEVERITY_ERROR, "Error",
"The objectParent doesnt have items "+e.getMessage()));
}
return result;
}
这是处理“A.xhtml”,“B.xhtml”项目视图的控制器
@PostConstruct
private Parent parent;
public void init() {
//From what i see, thos is ejecuted when a .xhtml page is using the controller to retrieve the dataTable
//
if(item.listarItemsB(objectParent.getCorte_id()).isEmpty()){
this.listaObjetos = item.listarItemA(objectParent.getCorte_id());
}else{
this.listaObjetos = item.listarItemsA(objectParent.getCorte_id());
}
}
public Parent getCorte() {
return corte;
}
public void setCorte(Parent parent) {
this.parent = parent;
}
我如何从一个xhtml视图发送数据,该视图处理一个控制器X以查看数据,发送到另一个使用另一个控制器Y的xhtml页面,并在另一个页面中显示使用Y控制器查看发送数据的数据。
如果您需要在两个.xhtml
视图之间共享一些数据,您可以将数据放在@SessionScoped
控制器中,该控制器在同一浏览器会话中的两个视图中具有相同的状态,并且对两个视图都可见。只需从page1.xhtml
提交您的数据到@SessionScoped
控制器并从page2.xhtml
访问它