Re: [jackson-user] Graceful Error Handling/Collection on Databind (2.9.0.pr2)

2017-04-20 Thread Tatu Saloranta
On Thu, Apr 20, 2017 at 1:28 PM, Andrew Joseph wrote: > > I'm looking to simply return null and add errors to a > Map from all JsonDeserializer instances when a > JsonMappingException is encountered (since the JSON parser can continue). In > each of

[jackson-user] Jackson custom List instance type

2017-04-20 Thread Santhosh Kumar
Posted a question in SO [0]. Question is: I have a need to map standard Json array to a custom List type (infact not java.util.List at all but javaslang.collection.List). Adding to the complexity, we don't have static beans where we could define the list type as javaslang type but we need to

[jackson-user] Graceful Error Handling/Collection on Databind (2.9.0.pr2)

2017-04-20 Thread Andrew Joseph
I'm looking to simply return null and add errors to a Map from all JsonDeserializer instances when a JsonMappingException is encountered (since the JSON parser can continue). In each of my beans, I plan to use @JacksonInject to inject the JsonPointer for the given bean