I was experimenting a bit with the @JsonIncludeProperties introduced recently.
It would be nice if it would automatically apply the property order instead of having to include @JsonPropertyOrder as well.
Now we need:
@JsonIncludeProperties({
"id",
"code",
"name"
})
@JsonPropertyOrder({
"id",
"code",
"name"
})
public class Continent {
}