Add JsonFactory.Feature.CHARSET_DETECTION to disable charset detection (default to UTF-8) by yawkat · Pull Request #921 · FasterXML/jackson-core (original) (raw)

Currently, we use a non-blocking parser to transform input JSON to a JsonNode, then send it downstream, and finally convert it to the desired request type when the route arguments are bound. This patch delays parsing until the conversion to the route type. It consists of these parts:

There are a few potential incompatibilities with this change: