Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable per-property naming with the @DataObjectProperty annotation #212

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Enable per-property naming with the @DataObjectProperty annotation #212

wants to merge 3 commits into from

Conversation

rgmz
Copy link
Contributor

@rgmz rgmz commented Sep 30, 2018

As per #211, the @DataObjectProperty annotation enables custom naming on a per-property basis.

e.g.

  @DataObjectProperty("listOfFoo")
  private List<Object> fooList;
  @DataObjectProperty("map-of-bar")
  private Map<String, Object> barMap;
  @DataObjectProperty("string_of_baz")
  private String bazString;

@rgmz
Copy link
Contributor Author

rgmz commented Sep 30, 2018

@ConverterProperty may be clearer than @DataObjectProperty.

(A similar convention to #213)

@rgmz
Copy link
Contributor Author

rgmz commented Mar 29, 2019

@vietj Related to #211, this PR allows per-property naming akin to Jackson's @JsonProperty annotation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants