- Notifications
You must be signed in to change notification settings - Fork 529
Closed
Description
I expect the following class to serialize for ex. in {"model_name":"Audi"}, but @JsonProperty value is ignored and I get {"modelName":"Audi"}
public static class Car { private String modelName; public Car(@JsonProperty("model_name") String carName) { this.modelName = carName; } @JsonProperty("model_name") public String getModelName() { return modelName; } } Metadata
Metadata
Assignees
Labels
No labels