-
Notifications
You must be signed in to change notification settings - Fork 3
JSTEP
Tatu Saloranta edited this page Jun 2, 2024
·
78 revisions
With Jackson 3, we want to start experimenting with something like "Jackson Big Ideas", maybe similar to Kafka KIPs. Not unlike IETF RFCs, but bit smaller documents.
Name chosen (back in 2017) is "JSTEP" (Jackson STrategic Enhancement Proposal") and seems to work.
-
JSTEP-4: Replace checked
JsonProcessingExceptionwith uncheckedJacksonException
- Major version upgrade details: JSTEP-1
- Jackson 3 default setting, behavior changes: JSTEP-2
-
JsonNodeimprovements JSTEP-3 - -- completed --
- Unify Date/Time handling, formats, defaults across JDK Classic, Joda and Java 8 date/time: JSTEP-5
- Jackson 3 Big Renaming of Core Entities: JSTEP-6
- More modular on/off "Feature"s beyond existing mapper/ser/deser: JSTEP-7
- Date/Time settings?
- Add some kind of processing limits for accepted input (max depth of nesting, number of keys per Object), to protected against DoS attacks. Similar to (for example), Woodstox' limits.
- Main issue for streaming: jackson-core#637
- Related issue(s) for databind: jackson-databind#2816
Initially proposed, but not yet accepted:
- Add proper Tree Model for
jackson-dataformat-xml(instead, minor improvements to existingJsonNode, like auto-conversion ofObjectNodetoArrayNode- Made bit less necessary by 2.12 work to support implicit coercion of sequences into
ArrayNode(dataformat-xml#403) - Other reasons still exist so this may yet be added
- Made bit less necessary by 2.12 work to support implicit coercion of sequences into
Although any improvement idea can become a JSTEP, one good source is Major Design Issues, which lists areas where current design limits implementation improvements.
More generic of Jackson 3 changes are improvement ideas are listed on Jackson3 Changes page; this is an older page also including some of changes already made.