有没有办法为 Jackson 反序列化器提供来自“外部”(例如 DI 容器)的默认值,该默认值将在反序列化对象(在本例中为 tagRegistry)时使用?
@JsonCreator
public ExtractionRule(@JsonProperty("id") String id,
TagRegistry tagRegistry) {
this.id = id;
this.tagRegistry = tagRegistry;
}
我找不到一个简单的方法来做到这一点。
鸿蒙传说
相关分类