[{"ID":"hzQ8ll","CreationDate":"Thu, 24 Feb 2011 12:53:31 GMT","Count":6,"Name":"SOMETAG"}]
The inside is of type tag so i just wrote this java class
public class Tags {
public List <Tag>tags;
}
But i get om.sun.jersey.api.client.ClientHandlerException: org.codehaus.jackson.map.JsonMappingException: Can not deserialize instance of com.test.Tags out of START_ARRAY token
Any ideas? Most of the time my outermost elements had a name associated to it so this is new to me. Thanks for any help
I am using Jersey with the JacksonJsonProvider like this
ClientConfig config = new DefaultClientConfig();
config.getClasses().add(JacksonJsonProvider.class);
then i just do a simple Jersey client call. Edit : Sorry put the wrong code. corrections
ClientResponse response = builder.get(ClientResponse.class); Tags tags = response.getEntity(Tags.class);