我很难找到为什么这不起作用。
我有一个selectManyCheckbox
<h:form>
<p:selectManyCheckbox id="listCars" value="#{controller.listSelectedCarTypes}" converter="genericEnumConverter">
<f:selectItems value="#{controller.listCarTypeValues}" />
</p:selectManyCheckbox>
<p:commandButton value="Pesquisar" action="#{controller.filter}" process="@this, @form" update="panelResults" icon="ui-icon-search"/>
</h:form>
控制器具有getter / setter,并且按以下方式声明和初始化列表:
private List<CarType> listSelectedCarTypes = null;
private List<CarType> listCarTypeValues = null;
@PostConstruct
public void init(){
listSelectedCarTypes = new ArrayList<CarType>();
listCarTypeValues = new ArrayList<CarType>();
listCarTypeValues.add(CarType.OFF_ROAD);
listCarTypeValues.add(CarType.CONVERSIBLE);
listCarTypeValues.add(CarType.TRUCK);
}
Enum是基本的东西:
public enum CarType {
OFF_ROAD {
@Override
public String getDescription() {
return "Cool but Hot Off the Road"
}
},
TRUCK {
@Override
public String getDescription() {
return "Holy moly a Monster Truck"
}
}
// lots of enums...
;
public abstract String getDescription();
@Override
public String toString() {
return getDescription();
}
}
最后,这是我从另一个stackoverflow参考中得到的转换器......
@FacesConverter(value="genericEnumConverter")
public class GenericEnumConverter implements Converter {
private static final String ATTRIBUTE_ENUM_TYPE = "GenericEnumConverter.enumType";
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
System.out.println("value: "+value);
if (value instanceof Enum) {
component.getAttributes().put(ATTRIBUTE_ENUM_TYPE, value.getClass());
return ((Enum<?>) value).name();
} else {
throw new ConverterException(new FacesMessage("Value is not an enum: " + value.getClass()));
}
}
@Override
@SuppressWarnings({"rawtypes", "unchecked"})
public Object getAsObject(FacesContext context, UIComponent component, String value) {
Class<Enum> enumType = (Class<Enum>) component.getAttributes().get(ATTRIBUTE_ENUM_TYPE);
try {
System.out.println("enumType: "+enumType+ " value: "+value);
System.out.println("CarType.valueOf(value): "+CarType.valueOf(value));
System.out.println("Enum.valueOf(enumType, value): "+Enum.valueOf(enumType, value));
return Enum.valueOf(enumType, value);
} catch (IllegalArgumentException e) {
throw new ConverterException(new FacesMessage("Value is not an enum of type: " + enumType));
}
}
}
因此,当视图和控制器进入时,它会按预期执行,并为组件的每个值调用getAsString,正常打印。 输出:
value: Cool but Hot Off the Road
value: Holy moly a Monster Truck
...
但是,当我提交表单并调用getAsObject时,它会在Enum.valueOf(enumType,value)上抛出IllegalArgumentException。
enumType: class my.project.enums.CarType$120 value: TRUCK
CarType.valueOf(value): Holy moly a Monster Truck
Value is not an enum of type: class my.project.enums.CarType$120
奇怪的是......这:CarType.valueOf(value)
工作......
但是这个:Enum.valueOf(enumType, value)
不要。
为了让selectManyCheckbox正常工作,我必须为我的枚举CarType制作一个显式转换器而不是Generic转换器。
任何人都可以向我解释一下吗?提前谢谢。
答案 0 :(得分:1)
这是核心Java问题。枚举类CarType
具有抽象方法,每个枚举值都是CarType
子类的实例。请参阅:Java Enum getDeclaringClass vs getClass
解决方案是在((Enum)value).getDeclaringClass()
方法中将value.getClass()
而不是ATTRIBUTE_ENUM_TYPE
设置为属性getAsString(...)
。
提示:我认为这是课程的问题,因为我注意到了班级名my.project.enums.CarType$120
中的数字。