Re: [jackson-user] Deserializing @JsonUnwrapped fields with @JsonCreator annotated constructors

2017-01-12 Thread Tatu Saloranta
On Thu, Jan 12, 2017 at 2:49 AM, wrote: > The only thing that successfully worked is to have a parameter-less > constructor and let Jackson set the fields (I didn't use a setter but simply > let jackson access the private field via reflection I guess). > > I thought it

Re: [jackson-user] Serialize specific field list only (at runtime)

2017-01-12 Thread Alexis Hernandez
The first link seems to have what I need, thanks. El domingo, 8 de enero de 2017, 23:16:18 (UTC-6), Tatu Saloranta escribió: > > There is no built-in support for specifically filtering out named > fields, although doing this using @JsonFilter should be possible. It's > briefly explained at: >

Re: [jackson-user] Deserializing @JsonUnwrapped fields with @JsonCreator annotated constructors

2017-01-12 Thread victor . noel
Here it is: https://github.com/FasterXML/jackson-databind/issues/1497 Le jeudi 12 janvier 2017 11:49:35 UTC+1, victo...@gmail.com a écrit : > > The only thing that successfully worked is to have a parameter-less > constructor and let Jackson set the fields (I didn't use a setter but > simply