Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[guava] Multimap deserializer does not honor DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY #6

Closed
cowtowncoder opened this issue May 13, 2016 · 0 comments
Milestone

Comments

@cowtowncoder
Copy link
Member

(moved from FasterXML/jackson-datatype-guava#89 by @neilmcguigan)

Should be able to have

enable(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
class Foo {
    public Multimap<String,String> bar;
}

with JSON

{
  bar: "qux"
}

However, this throws exception:

JsonMappingException: Expecting START_ARRAY, found VALUE_STRING`

Please note that this works:

class Foo {
    List<String> bar;
}

with JSON:

{
  bar: "qux"
}

when

enable(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant