Например, у меня есть класс «Coordiantes» ".
Код: Выделить всё
class Coordinates{
int red;
}
Код: Выделить всё
{
"red":12
}
Код: Выделить всё
{
"r":12
}
Код: Выделить всё
class Coordiantes{
int red;
@JsonProperty("r")
public byte getRed() {
return red;
}
@JsonProperty("red")
public void setRed(byte red) {
this.red = red;
}
}
org.codehaus.jackson.map .exc.UnrecouncedPropertyException: нераспознанное поле «красное»
Подробнее здесь: https://stackoverflow.com/questions/856 ... ialization