I\'m trying to parse my json request to my model. I dunno what is wrong in this code. Syntax of json looks correct and annotations on Java model also. I don\'t know why I\'m
A couple of corrections in your pojo class ,
1)
public class ParametersType {
@JsonProperty( "parameter" )
protected List parameter;
...}
public class Parameters {
@JsonProperty( "parameter" )
protected List parameter;
...}