我想在<h:selectManyCheckbox>
中使用枚举值。正确填充复选框,但是,在选择某些值并提交它们时,它们的运行时类型为String
,而不是枚举。我的代码:
<h:selectManyCheckbox value="#{userController.roles}" layout="pageDirection">
<f:selectItems value="#{userController.rolesSelectMany}" />
</h:selectManyCheckbox>
UserController类(SecurityRole是枚举类型):
public SelectItem[] getRolesSelectMany() {
SelectItem[] items = new SelectItem[SecurityRole.values().length];
int i = 0;
for (SecurityRole role : SecurityRole.values()) {
items[i++] = new SelectItem(role, role.toString());
}
return items;
}
public List<SecurityRole> getRoles() {
getCurrent().getRoles();
}
public void setRoles(List<SecurityRole> roles) {
getCurrent().setRoles(roles);
}
当JSF调用setRoles方法时,它包含String类型的列表,而不是枚举类型。有任何想法吗?谢谢!
答案 0 :(得分:36)
此问题与枚举无关。对于JSF内置转换器的其他List
类型,您会遇到同样的问题,例如: List<Integer>
,List<Double>
,等等。
问题是EL运行运行时,并且在运行时期间丢失泛型类型信息。因此,实质上,除非明确List
另有说明,否则JSF / EL对String
的参数化类型一无所知,默认为Converter
。从理论上讲,在ParameterizedType#getActualTypeArguments()
的帮助下使用讨厌的反射黑客是可能的,但是JSF / EL开发人员可能有他们没有这样做的理由。
您确实需要为此明确定义转换器。由于JSF已经附带了内置EnumConverter
(在这种特殊情况下不能单独使用,因为你必须在运行时指定枚举类型),你可以按如下方式扩展它:
package com.example;
import javax.faces.convert.EnumConverter;
import javax.faces.convert.FacesConverter;
@FacesConverter(value="securityRoleConverter")
public class SecurityRoleConverter extends EnumConverter {
public SecurityRoleConverter() {
super(SecurityRole.class);
}
}
使用如下:
<h:selectManyCheckbox value="#{userController.roles}" converter="securityRoleConverter">
<f:selectItems value="#{userController.rolesSelectMany}" />
</h:selectManyCheckbox>
或
<h:selectManyCheckbox value="#{userController.roles}">
<f:converter converterId="securityRoleConverter" />
<f:selectItems value="#{userController.rolesSelectMany}" />
</h:selectManyCheckbox>
更通用(和hacky)的解决方案是将枚举类型存储为组件属性。
package com.example;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.convert.ConverterException;
import javax.faces.convert.FacesConverter;
@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) {
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 {
return Enum.valueOf(enumType, value);
} catch (IllegalArgumentException e) {
throw new ConverterException(new FacesMessage("Value is not an enum of type: " + enumType));
}
}
}
它可用于使用转化器ID List<Enum>
的所有genericEnumConverter
种类。对于List<Double>
,List<Integer>
等,可以使用内置转换器javax.faces.Double
,javax.faces.Integer
等。由于无法从视图侧指定目标枚举类型(Class<Enum>
),内置的Enum转换器不合适。 JSF实用程序库OmniFaces提供了此转换器out the box。
请注意,对于普通Enum
属性,内置EnumConverter
已经足够了。 JSF将使用正确的目标枚举类型自动实例化它。
答案 1 :(得分:1)
在某些情况下,列表也可以是数组 SomeType [] ,在这种情况下,不需要显式转换器。
通用擦除是一种巧妙的方法,可以将泛型放入语言而不会破坏旧的东西,但现在我们永远生活在这个决定的后果中......