-
-
Notifications
You must be signed in to change notification settings - Fork 177
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
Should @Transient
imply @JsonIgnore
?
#344
Comments
This is a good question. Even keyword |
Fields with the // original
@Transient
var temp: Any? = null // decompiled
@Nullable
private transient Object temp; @cowtowncoder |
I think that
added via FasterXML/jackson-databind#296 in Jackson 2.6 might actually already do what is being asked. If not, I think that the original submitter (@StephenOTT ) could choose to re-file at For now, I think this can be simply closed. |
Thanks. @StephenOTT |
working with scenarios where a class could have different forms of serialization (java vs smile, etc)
If the kotlin annotation
@Transient
is applied, should it trigger jackson to apply@JsonIgnore
?The javadoc for
@Transient
is:Just a thought for discussion
The text was updated successfully, but these errors were encountered: