Allow use of @JsonCreator(mode = Mode.PROPERTIES)
creator for POJOs with "empty String" coercion
#3676
Milestone
@JsonCreator(mode = Mode.PROPERTIES)
creator for POJOs with "empty String" coercion
#3676
(note: offshoot of FasterXML/jackson-dataformat-xml#547)
Currently it is possible to allow coercion from JSON Empty String into POJOs that have "default" (aka "no-arg" or "0-arg") Creator (constructor of rfactory method). But it is not possible to use "properties"-style Creator like:
as deserialization only wants to use default creator.
But we could actually use Properties-passing one (if one exists). Let's allow this.
NOTE: this is most useful for XML use case.
The text was updated successfully, but these errors were encountered: