Re: [jackson-user] Ability to deserialize dictionary (HashMap) on top level

2019-08-23 Thread Tatu Saloranta
On Wed, Aug 21, 2019 at 10:02 AM EnterpriseJacksonBeansFrameworkCE wrote: > > > I am trying to map json dictionary of objects with known structure to POJO > under jackson control: > > import com.fasterxml.jackson.annotation.JsonProperty; > > > public class GetListOfRecordsResponse { > >

[jackson-user] Ability to deserialize dictionary (HashMap) on top level

2019-08-21 Thread EnterpriseJacksonBeansFrameworkCE
I am trying to map json dictionary of objects with known structure to POJO under jackson control: import com.fasterxml.jackson.annotation.JsonProperty; public class GetListOfRecordsResponse { @JsonProperty("recordsCount") private Integer recordsCount; // Works always