我试图使用jackson将json反序列化为enum。如果工厂方法只有一个参数,它工作正常。一旦我们添加更多参数,它就会停止工作。
这是我尝试过的代码示例。
public enum Test {
FIRST(1, "first");
private final int intProp;
private final String stringProp;
Test(int i, String stringProp) {
this.stringProp = stringProp;
this.intProp = i;
}
private static final Map<String, Test> allEntries = new HashMap<>(Test.values().length);
static {
for(Test each : Test.values()){
allEntries.put(getCode(each.intProp, each.stringProp), each);
}
}
private static String getCode(int i, String s){
return s + i;
}
@JsonCreator(mode = Mode.PROPERTIES)
public static Test forValues(@JsonProperty("intProp") int intProp,
@JsonProperty("stringProp") String stringProp
){
return allEntries.get(getCode(intProp,stringProp));
}
}
使用以下代码反序列化json
String json = "{\"intProp\":1,\"stringProp\":\"first\"}";
ObjectMapper mapper = new ObjectMapper();
Test enumValue = mapper.readValue(json, Test.class); //fails
这是我得到的例外
com.fasterxml.jackson.databind.JsonMappingException: Unsuitable method
版本:jackson-databind 2.5.1,jackson-annotations 2.5.0
我不想编写自定义反序列化程序,我的方法是否有错误或杰克逊不支持该选项?
使用class
代替enum
时同样适用。
答案 0 :(得分:3)
看起来这个功能实际上在jackson库中缺失了。我在jackson-databind github project打开了一个问题。将不得不等待他们在即将发布的版本中修复它。