Ich habe eine ziemlich komplizierte Anfrage scoped JSF 1.2 verwaltete Bean mit verschiedenen Methoden und Eigenschaften. Einige der Eigenschaften sind URL-Anforderungsparametern zugeordnet, so dass sie ein Entitätsobjekt entsprechend dem id-Attribut in der URL auffüllen kann.
Ich verwende dieselbe Managed Bean sowohl zum Erstellen eines neuen Datensatzes für diese Entität mit einer JSF-Seite als auch für das Aktualisieren einiger Felder mit einer anderen. Im Erstellungsmodus gibt es keine URL-Parameter, und das Übermitteln des Formulars mit einer Aktionsmethode tut einfach, was ihm gesagt wird, und führt die Methode aus.
Aber wenn im Update-Modus, immer die Entität-ID aus der Anfrage-Parameter (in der URL), die das Formular perfekt mit der Entität Daten aus der Datenbank gezogen füllt, die Submit-Schaltfläche d.h. die nicht die Action-Methode auf die gleiche verwaltete Bohne aufrufen, aber lädt die Seite mit den URL-Parameter weg und mit dem Formular leer dieses Mal, da es keine id in der URL, die id-Eigenschaft, die verwendet wird, wenn auf die entsprechenden Daten durch eine Serviceklasse-Methode zum Festlegen des Entity-Objekts verweisen, ist null.
Wie kann ich also erreichen, dass diese Methode in diesem Aktualisierungsmodus ausgeführt wird, wenn ich sie aufrufe?
Auf einen Rat hin hatte ich auch versteckte Felder mit den Werten von id-Parametern aus der URL in das Aktualisierungsformular eingefügt, was aber nicht zu funktionieren schien.
Hier ist das Codefragment, das das Formular auf der problematischen JSF-Seite enthält:
<h:form id="ostOnayForm">
<h:messages style="color:red" />
<h:inputHidden value="#{oduncStokTalepBean.viewID}" />
<h:inputHidden value="#{oduncStokTalepBean.adimID}" />
<h:panelGrid id="oracleERP" columns="3"
rendered="#{oduncStokTalepBean.aksiyon.faz==3}">
Personel ödünç cari kodu:
<h:inputText id="carikod" value="#{oduncStokTalepBean.oduncCariKod}"
required="true"
requiredMessage="Bu personelin 'ödünç cari kodu'nu girmelisiniz. (Eer böyle bir kod tanml deilse, önce tanm yaplmaldr."
validatorMessage="Bu alana en fazla 25 karakter girebilirsiniz.">
<f:validateLength maximum="25" />
</h:inputText>
<h:message for="carikod" style="color:red" />
</h:panelGrid>
<h:panelGroup id="depocu1"
rendered="#{oduncStokTalepBean.aksiyon.faz==2}">
Personel ödünç cari kodu:
<h:inputText value="#{oduncStokTalepBean.oduncCariKod}"
required="false"
validatorMessage="Bu alana en fazla 25 karakter girebilirsiniz.">
<f:validateLength maximum="25" />
</h:inputText>
</h:panelGroup>
<h:panelGroup id="depocu2"
rendered="#{oduncStokTalepBean.aksiyon.faz==2}">
<h:selectBooleanCheckbox value="#{oduncStokTalepBean.kargoyla}" />Ürün kargo firmas ile teslim edilecek
</h:panelGroup>
<h:panelGrid columns="3"
rendered="#{oduncStokTalepBean.onaylamaYetkisi}">
Görüler:
<h:inputTextarea id="gorus" value="#{oduncStokTalepBean.gorus}"
required="true"
validatorMessage="Bu alana en fazla 255 karakter girebilirsiniz."
requiredMessage="Lütfen görü de bildirin.">
<f:validateLength maximum="255" />
</h:inputTextarea>
<h:message for="gorus" style="color:red" />
<h:commandButton action="#{oduncStokTalepBean.vazgec}" value="Vazgeç" />
<h:commandButton type="submit" action="#{oduncStokTalepBean.onayla}"
value="Onayla" rendered="#{oduncStokTalepBean.onaylamaYetkisi}" />
<h:commandButton action="#{oduncStokTalepBean.reddet}"
value="Reddet"
onclick="return confirm('Bu formu reddetmek istediinizden emin misiniz?')"
rendered="#{oduncStokTalepBean.onaylamaYetkisi}" />
</h:panelGrid>
</h:form>
Die hintere Bohne:
public class OduncStokTalepBean extends SurecBean {
private String oduncCariKod;
private Boolean kargoyla;
private OduncStokTalep oduncStokTalep = new OduncStokTalep("ost", "Ödünç Stok Talebi");
private List<SelectItem> depoListesi = new ArrayList<SelectItem>();
private OduncStokAdres osa = new OduncStokAdres();
private OduncStokAdresJpaController osaServ = new OduncStokAdresJpaController();
public OduncStokTalepBean() {
super();
}
@PostConstruct
public void initializeOST() {
if (FacesUtil.getSessionAttribute("GO_Person_id") != null ) {
GO_Person_id = Integer.valueOf((String) FacesUtil.getSessionAttribute("GO_Person_id"));
if (viewID != null) {
System.out.println("ostBean got viewID:"+viewID);
this.oduncStokTalep = ostServ.findOduncStokTalep(viewID);
this.editModu = true;
this.oduncCariKod = this.oduncStokTalep.getPersonelOduncCariKodu();
this.kargoyla = this.oduncStokTalep.getKargoylaTeslim();
System.out.println("ost: "+oduncStokTalep.getId()+" * "+oduncStokTalep.toString());
if (adimID != null) {
this.aksiyon = aServ.findAkisAdim(adimID);
this.setAksiyonModu(true);
} else {
System.out.println("adimID was null, reading it from Surec...");
if (oduncStokTalep.getPendingAction()!=null) {
this.aksiyon = aServ.findAkisAdim(oduncStokTalep.getPendingAction());
System.out.println("Found :"+aksiyon.getId()+" "+aksiyon.getAktor()+aksiyon.getAdimTanim());
this.setAksiyonModu(true);
} else {
System.out.println("oduncStokTalep.getPendingAction() seems also null :"+oduncStokTalep.getPendingAction());
this.setAksiyonModu(false);
}
}
if (editModu && GO_Person_id!=null) {
if (oduncStokTalep.getSuAnKimde().contains(GO_Person_id.toString()) )
this.onaylamaYetkisi = true;
if (this.aksiyon != null && this.aksiyon.getAktor().contains(GO_Person_id.toString()))
this.onaylamaYetkisi = true;
}
} else {
System.out.println("viewID is null.");
System.out.println("initializing OST...");
this.editModu = false;
this.setAksiyonModu(false);
oduncStokTalep.setPersonId(GO_Person_id);
}
} else oturumActirt();
}
// THE FOLLOWING METHOD IS EXECUTED PERFCETLY WITH A BLANK FORM AND WITH NO GET PARAMETER
public String kaydet(){
Long formId;
System.out.println("invoking ost kaydet()...");
ostServ.doPersist(oduncStokTalep);
formId = oduncStokTalep.getId();
System.out.println("OST MB obtained Id:"+formId);
if (formId != null) {
doSomeOtherStuff();
}
FacesUtil.setSessionAttribute("surecView", null);
FacesUtil.setSessionAttribute("surecAdim", null);
FacesUtil.setSessionAttribute("surecID", null);
FacesContext fc = FacesUtil.getFacesContext();
fc.addMessage(null, new FacesMessage("Ödünç Stok talebiniz baaryla oluturuldu ve "+formId+" no'lu ile sisteme kaydedildi."));
oduncStokTalep = new OduncStokTalep("ost", "Ödünç Stok Talebi");
return "KAYDETVEGONDER";
}
// This method is never even called form the update form :(((((
public String onayla() throws NonexistentEntityException, Exception {
System.out.println("Onayla() invoked for OST "+oduncStokTalep.getId());
if (this.onaylamaYetkisi) {
ystem.out.println("onaylama yetkisi de var.");
SomeActionController ac1 = new SomeActionController();
if (aksiyon == null)
aksiyon = ac1.getPendingAction("ost", this.viewID, String.valueOf(this.GO_Person_id));
ac1.adimiTamamla(this.GO_Person_id, "ost", this.viewID, aksiyon.getId(), true, this.gorus);
}
oduncStokTalep = new OduncStokTalep("ost", "Ödünç Stok Talebi");
return "DASHBOARD";
}
// Neither this one via <h:commandButton action="#{oduncStokTalepBean.test}" value="Test Action Method" />
public void test() {
System.out.println("Test OK");
}
// getters and setters, etc.
}
und das Fragment faces-config:
<managed-bean>
<managed-bean-name>surecBean</managed-bean-name>
<managed-bean-class>net.ozar.wf.jsfmanaged.SurecBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>viewID</property-name>
<property-class>java.lang.Long</property-class>
<value>#{param.id}</value>
</managed-property>
<managed-property>
<property-name>adimID</property-name>
<property-class>java.lang.Long</property-class>
<value>#{param.aid}</value>
</managed-property>
<managed-property>
<property-name>surecID</property-name>
<property-class>java.lang.String</property-class>
<value>#{param.sid}</value>
</managed-property>
</managed-bean>
<managed-bean>
<managed-bean-name>oduncStokTalepBean</managed-bean-name>
<managed-bean-class>net.ozar.wf.jsfmanaged.OduncStokTalepBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>viewID</property-name>
<property-class>java.lang.Long</property-class>
<value>#{param.id}</value>
</managed-property>
<managed-property>
<property-name>adimID</property-name>
<property-class>java.lang.Long</property-class>
<value>#{param.aid}</value>
</managed-property>
</managed-bean>