我正在将一些变量从.xhtml页面发送到控制器,同时将数据发送到另一个页面,该页面具有另一个控制器,该控制器处理该页面的数据,我尝试使用setter和getters。 问题是我真的不知道与@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;
}
我如何从处理一个控制器X的xhtml视图发送数据,以查看数据,发送到使用另一个控制器Y的另一个xhtml页面, 并显示在使用Y控制器查看发送数据的数据的另一页中。
答案 0 :(得分:0)
如果需要在两个.xhtml
视图之间共享某些数据,可以将数据放在@SessionScoped
控制器中,该控制器在同一浏览器会话和两个视图中两个视图之间的状态相同对两个视图均可见。
只需从page1.xhtml
提交数据到@SessionScoped
控制器并从page2.xhtml