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
since version 2.0 of jackson-data the isIgnorable...() methods of AnnotationIntrospector are replaced with hasIgnoreMarker(). Therefore Feature.USE_TRANSIENT_ANNOTATION does not work.
In class HibernateAnnotationIntrospector the isIgnorable...() methods should be replaced by:
@Override
public boolean hasIgnoreMarker(AnnotatedMember m) {
return _cfgCheckTransient && m.hasAnnotation(Transient.class);
}
The text was updated successfully, but these errors were encountered:
I created a pull request fixing this issue but I only fixed Hibernate4 module, as I currently only use this version and do not have a test environment for Hibernate3.
Tatu - Moving to DW 0.7.1/Jackson 2.3.3 causes @transient properties to be suppressed, even when marked with a @JSONVIEW. I would have expected the JsonView to trump Transient (even though I'm not sure I should be sharing entities between API and persistence). Any recommendations?
since version 2.0 of jackson-data the isIgnorable...() methods of AnnotationIntrospector are replaced with hasIgnoreMarker(). Therefore Feature.USE_TRANSIENT_ANNOTATION does not work.
In class HibernateAnnotationIntrospector the isIgnorable...() methods should be replaced by:
The text was updated successfully, but these errors were encountered: