我读了一些关于相同组件的QA,但我觉得我错过了一些东西,因为我落后了一步。 当我在其中使用primefaces自动完成组件时,我甚至无法打开页面。 它的片段是:
<p:autoComplete value="#{indirizzoCtrl.selectedCodiceNazione}"
completeMethod="#{indirizzoCtrl.completeNazione}"
var="nazione" itemLabel="#{nazione.nome}"
itemValue="#{nazione.codiceNazione}" />
Nazione是一个Pojo类,CodiceNazione
和Nome are
两个String字段(肯定有getter和setter)。 completeNazione
是ManagedBean上返回List<Nazione>
的方法。
看看BalusC解释here,在我看来,我不需要任何转换器,因为itemValue和value属性都映射到字符串属性。
无论如何,当我打开包含此自动完成代码段的页面时,它会因此错误而崩溃:
javax.el.PropertyNotFoundException: /Cliente/Indirizzo.xhtml @23,56 itemValue="#{nazione.codiceNazione}": itemValue="#{nazione.codiceNazione}": Property 'codiceNazione' not found on type java.lang.String
为什么会这样?我真的无法得到它。 completeNazione的方法还没有调用,所以它不应该知道任何Nazione
。
怎么了?
编辑: 根据建议,我试图添加转换器,但我仍然得到相同的错误。 这是我的转换器:
public class NazioneConverter implements Converter {
final static Logger log = Logger.getLogger(NazioneConverter.class);
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
if (value.trim().equals("")) {
return null;
} else {
try {
IndirizzoRepository ir = new IndirizzoRepository();
List<Nazione> nazioni = ir.getNazioneByName(value);
if (nazioni.size()==1) return nazioni.get(0);
else throw new Exception();
} catch (Exception e) {
String msg = "Errore di conversione";
log.error(msg, e);
throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, msg, "Non è una nazione conosciuta"));
}
}
}
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
if (value == null || value.equals("")) {
return "";
} else {
return String.valueOf(((Nazione) value).getNome());
}
}
}
现在视图中的组件如下所示:
<p:autoComplete value="#{indirizzoCtrl.indirizzo.nazione.codiceNazione}"
completeMethod="#{indirizzoCtrl.completeNazione}"
var="nazione" itemLabel="#{nazione.nome}" converter="#{nazioneConverter}"
itemValue="#{nazione.codiceNazione}" forceSelection="true" />
但仍然不工作。甚至没有调用转换器:我在faces-config.xml文件中注册了它。
我也尝试了itemValue =“#{nazione}”,如在primefaces展示中,但问题变为ItemLabel
属性,映射到nazione.nome
。
我做错了什么?
答案 0 :(得分:1)
//Converter
@FacesConverter(value="MarcaConverter")
public class MarcaConverter implements Converter{
MarcaDAO marcaDAO;
public Object getAsObject(FacesContext contet, UIComponent component, String value) {
if(value==null || value.equals(""))
return null;
try{
int id = Integer.parseInt(value);
return marcaDAO.findMarcaById(id);
}catch (Exception e) {
e.printStackTrace();
throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Marca no válida", ""));
}
}
public String getAsString(FacesContext contet, UIComponent component, Object value) {
if(value==null || value.equals(""))
return null;
return String.valueOf(((Marca)value).getCodigoMarca());
}
}
//--------------------------------------
//Bean
@ManagedBean
@ViewScoped
public class MyBeans implements Serializable{
private Marca marca;
...
public Marca getMarca(){
return marca;
}
public void setMarca(Marca m){
marca=m;
}
...
public List<Marca> obtenerMarcasVehiculos(String s) {
List<Marca> marcas,smarcas=new ArrayList<Marca>();
try{
marcas= marcaDAO.findAllMarcas();
if(s.trim().equals("")) return marcas;
for(Marca m:marcas)
if (m.getNombreMarca().toString().contains(s) || m.getNombreMarca().toLowerCase().contains(s.toLowerCase())) {
smarcas.add(m);
}
return smarcas;
}catch(Exception e){
//JsfUtil.showFacesMsg(e,"Error al obtener las marcas de vehículos","",FacesMessage.SEVERITY_WARN);
e.printStackTrace();
JsfUtil.lanzarException(e);
return null;
}
}
//-----------------------------------------
//*.xhtml page
...
<p:autoComplete
id="cbxMarca" value="#{myBean.marca}" size="40"
converter="MarcaConverter"
completeMethod="#{myBean.obtenerMarcasVehiculos}"
var="m" itemLabel="#{m.nombreMarca}" itemValue="#{m}"
forceSelection="true" dropdown="true"
required="true" scrollHeight="200">
</p:autoComplete>
...
//-----------------------------------------
//Class Marca
public class Marca implements Serializable{
private static final long serialVersionUID = 1L;
private Integer codigoMarca;
private String nombreMarca;
...
答案 1 :(得分:0)
您是否阅读过用户指南? http://www.primefaces.org/documentation.html
我必须说我从未使用pojo自动完成功能,但是从我在用户指南中读到的内容,ÇağatayÇivici说:
请注意,使用pojos时,您需要插入自己的转换器。
Here你可以发现即使PlayerConverter
和其他道具是字符串,也会实现转换器(player.name
)。
我承认这很有趣,我会做一些研究,但我现在没有必要的时间......
答案 2 :(得分:0)
在autoComplete中将itemValue
从itemValue="#{nazione.codiceNazione}"
更改为itemValue="#{nazione}"
。
答案 3 :(得分:0)
更改
converter="#{nazioneConverter}"
converter="nazioneConverter"
到autocomplete