-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Jackson Release 2.9
Tatu Saloranta edited this page Sep 21, 2016
·
175 revisions
Version 2.9 development has not yet been started, as of July 2016, but will start soon.
- Per-property custom serialization inclusion (
@JsonInclude(value=Include.CUSTOM, comparator=MyExcluder.class) - Add separate exception type for "pojo configuration problem", distinct from "json input" problem; in general to distinguish between bad configuration (server-side issue) and bad data (client issue) #1356
- Per-property overwrite-vs-merge annotation/handling, to allow for merging of configuration information (for example)
- Aliases, to allow migration: alternate property id names to accept (but not write)
- Non-blocking JSON/Smile parser?
- Rewrite of property/creator introspection code, to resolve many open issue wrt Creator auto-detection and name-detection
- Support for
@JsonIncludeProperties(opposite of@JsonIgnoreProperties) - Allow pre-defining Object Ids; pluggable Object Id converters?
- Protobuf: Schema building by hand
- "Safe"
ObjectReader,ObjectWriter; that is, ones that does NOT throw checked exceptions (wrapIOExceptions), to work better with Java 8 Streams - A way to force a supertype as type id to use during serialization: this is needed to avoid deserialization problems for things like concrete Hibernate collection type.