I found the answer after some more research:
In my User class I just had to enter
@JsonProperty("user-activation-code")
private String user_activation_code;
Type: Posts; User: strekdal; Keyword(s):
I found the answer after some more research:
In my User class I just had to enter
@JsonProperty("user-activation-code")
private String user_activation_code;
I am writing an Android client that is getting info about a user via a REST-call (JSON).
With Spring the result should be "automagically" returned as in instance of the User object I define, with...