We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
public class MyPojo { @JsonProperty("@id") String myIdReference }
Will result in illegal code generation private native void set@id(.....
The text was updated successfully, but these errors were encountered:
Ah nice catch. I'll see what I can do. It should work if you put your field public or annotate a public setter.
Sorry, something went wrong.
Issue #39 Compilation fails when property name contains special chara…
da10a8b
…cters The solution is to stop using the property name to name generated variable/method.
nmorel
No branches or pull requests
public class MyPojo {
@JsonProperty("@id")
String myIdReference
}
Will result in illegal code generation
private native void set@id(.....
The text was updated successfully, but these errors were encountered: