JsonProperty
annotation for the argument: if so, this is so-called "delegate creator",
in which case Jackson first binds JSON into type of the argument, and
then calls creator
--;ted
You received this message because you are subscribed to the Google Groups "jackson-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jackson-user...@googlegroups.com.
To post to this group, send email to jackso...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Ahh, ok, so a "single-arg constructor" only works if the argument is a Map<String,Object>? I've also seen reference to List<> as the "inverse" of JsonValue. Are those the only two cases
where a single-argument constructor (with @JsonCreator), but without @JsonProperty is valid?
Also, in your example you're using .path()? Is that from some library, or was that just example "magic" to make it easier to read? :)