views:

336

answers:

1

Could not find any examples of @JsonTypeResolver usage in the docs or elsewhere.

+1  A: 

This seems like a good question for Jackson mailing lists (user@) or for user community forums. Asking it there might help get documentation written.

It could be there are unit tests for this feature? (src/test in source package) Underlying default implementation implements object that @JsonTypeResolver is used to register, so last effort could be to peek in 'org.codehaus.jackson.map.jsontype.impl' package (I think).

StaxMan