爲了消除整個應用程序中的'靜態'聲明(以幫助JVM的GC),我從下面的Converter類定義中刪除了'static'。因此,導致下面臭名昭着的錯誤:Can Converter @FacesConverter(forClass = [someClass.class])被實現爲@Singleton @Lock(READ)?
Apr 13, 2013 4:10:38 AM org.apache.myfaces.application.ApplicationImpl internalCreateConverter
SEVERE: Could not instantiate converter jsf.CustomerController$CustomerControllerConverter
java.lang.InstantiationException: jsf.CustomerController$CustomerControllerConverter
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.apache.myfaces.application.ApplicationImpl.internalCreateConverter(ApplicationImpl.java:1626)
at org.apache.myfaces.application.ApplicationImpl.createConverter(ApplicationImpl.java:1545)
at javax.faces.application.ApplicationWrapper.createConverter(ApplicationWrapper.java:158)
我假設'靜態'是必要的,因爲只有一個副本的類創建每個應用程序。正確?那麼,我可以將類定義爲@Singleton @Lock(READ)來解決問題嗎?
根據NetBeans生成的JSF控制器/ bean代碼,Converter通常在與控制器或@ManagedBean相同的.java文件中定義。說實話,我並不想在xhtml中使用addConverter()或converterId =「...」。我更喜歡使用@FacesConverter,因爲這已經在整個應用程序中爲我工作。
package jsf;
import jpa.entities.Customer;
import jpa.session.CustomerFacade;
import java.io.Serializable;
import javax.ejb.EJB;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.convert.FacesConverter;
@ManagedBean(name = "customerController")
@RequestScoped
public class CustomerController implements Serializable {
@EJB
private jpa.session.CustomerFacade ejbFacade;
public CustomerController() {
}
@FacesConverter(forClass = Customer.class)
public class CustomerControllerConverter implements Converter {
public Object getAsObject(FacesContext facesContext, UIComponent component, String value) {
if (value == null || value.length() == 0) {
return null;
}
/*
* 2012-07-10 when user enters invalid/incomplete value (e.g. "irene", see below) in AutoComplete
*
WARNING: For input string: "irene"
java.lang.NumberFormatException: For input string: "irene"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:492)
at java.lang.Integer.valueOf(Integer.java:582)
at jsf.pointOfContact.pf_PointOfContactController$PointOfContactControllerConverter.getKey(pf_PointOfContactController.java:1625)
at jsf.pointOfContact.pf_PointOfContactController$PointOfContactControllerConverter.getAsObject(pf_PointOfContactController.java:1620)
at org.primefaces.component.autocomplete.AutoCompleteRenderer.getConvertedValue(AutoCompleteRenderer.java:529)
at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030)
at javax.faces.component.UIInput.validate(UIInput.java:960)
*
*/
try {
Integer test = getKey(value);
} catch (java.lang.NumberFormatException e) {
return null;
}
CustomerController controller = (CustomerController) facesContext.getApplication().getELResolver().
getValue(facesContext.getELContext(), null, "customerController");
return controller.ejbFacade.find(getKey(value));
}
java.lang.Integer getKey(String value) {
java.lang.Integer key;
key = Integer.valueOf(value);
return key;
}
String getStringKey(java.lang.Integer value) {
StringBuffer sb = new StringBuffer();
sb.append(value);
return sb.toString();
}
public String getAsString(FacesContext facesContext, UIComponent component, Object object) {
if (object == null) {
return null;
}
if (object instanceof Customer) {
Customer o = (Customer) object;
return getStringKey(o.getCustomerId());
} else {
throw new IllegalArgumentException("object " + object + " is of type " + object.getClass().getName() + "; expected type: " + Customer.class.getName());
}
}
}
}
請指教。
此外,請讓我知道如何獲得電子郵件通知,每當有人在我的問題在這裏回覆stackoverflow.com。
謝謝!