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
Dropwizard JAX-RS provider seems to add special handling to make anything annotated with @JsonIgnoreType (that is, any endpoint annotated) to be considered "untouchable", that is, not to be processed using Jackson ObjectMapper. This makes sense in that it allows marker for certain kinds of specific classes that Jackson can not and should not handle, instead deferring to some other processing component.
The text was updated successfully, but these errors were encountered:
cowtowncoder
changed the title
Add supported for @JsonIgnoreTypeq
Add support for @JsonIgnoreTypeJan 15, 2015
Another possibility would be to use the new configureOverride mechanism, which allows marking types as ignorable: could just check if return type might be included. Check is efficient and possibly better than annotations.
cowtowncoder
changed the title
Add support for @JsonIgnoreType
Add support for @JsonIgnoreType for endpoints
Jul 28, 2017
Dropwizard JAX-RS provider seems to add special handling to make anything annotated with
@JsonIgnoreType
(that is, any endpoint annotated) to be considered "untouchable", that is, not to be processed using Jackson ObjectMapper. This makes sense in that it allows marker for certain kinds of specific classes that Jackson can not and should not handle, instead deferring to some other processing component.The text was updated successfully, but these errors were encountered: