This repository was archived by the owner on Jan 22, 2019. It is now read-only.
JsonPropertyOrder Inconsistencies with Caps #80
Closed
Description
Saw some strange behavior of CSVMapper with JsonPropertOrder Annotation while beginning the attribute names with Caps. In below example if I try to build the schema directly from the Example Class then I get 4 Columns instead of 2. It takes "dnacode" & "rbccount" in addition to the given two columns.
@JsonPropertyOrder(value = {"DNACount","RBCCount"})
public class Example {
private String RBCCount;
private String DNACode;
...getter-setters...
}
Am I doing anything wrong or is this a tiny bug?
Metadata
Metadata
Assignees
Labels
No labels