You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 22, 2019. It is now read-only.
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...
}