This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Description
Should be able to have
enable(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
class Foo {
public Multimap<String,String> bar;
}
with JSON
However, this throws exception:
JsonMappingException: Expecting START_ARRAY, found VALUE_STRING
Please note that this works:
class Foo {
List<String> bar;
}
with JSON:
when enable(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY);