- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个看起来像这样的类:
public class Content {
public enum Type {
TEXT, URL, FILE
}
public enum Rendering {
MARKDOWN, HTML, PLAIN, AUTO
}
public final Type type;
public final Rendering rendering;
public final String content;
public Content(Type type, Rendering rendering, String content) {
this.type = type;
this.rendering = (rendering != null ? rendering : Rendering.AUTO);
this.content = content;
}
}
我得到了一个如下所示的 JSON 字符串:
{
"type": "TEXT",
"rendering": "AUTO",
"content": "Lorem ipsum"
}
现在,因为 Content
类中的字段是最终的,Jackson 将不起作用,所以我使用 MixIns :
public abstract static class ContentMixIn {
@JsonCreator
public ContentMixIn(@JsonProperty("type") Type type,
@JsonProperty("rendering") Rendering rendering,
@JsonProperty("content") String content) {
}
}
注意:我可以使用构造函数参数注释原始类,但Content
来 self 无法修改的库
这就是我使用它们的方式:
// ...
SimpleModule module = new SimpleModule();
module.setMixInAnnotation(Content.class, ContentMixIn.class);
ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(module);
mapper.readValue("<the json>", Content.class);
这会抛出:
com.fasterxml.jackson.databind.JsonMappingException: No suitable constructor found for type [simple type, class com.foo.Content]: can not instantiate from JSON object (need to add/enable type information?)
at [Source: {
"type": "TEXT",
"rendering": "AUTO",
"content": "Lorem ipsum"
}; line: 2, column: 2]
at com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:148)
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1063)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:264)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:124)
at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:3051)
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2146)
为什么?通过简单地查看行号,我假设它在提示 enum Type
,但我该如何更正它?
PS:MixIn 设置正确,因为当我用 String 值替换 Content 构造函数的枚举参数时,它可以工作(尽管不是我想要的方式):
// ... in the Content class
public Content(String type, String rendering, String content) {
this.type = null;
this.rendering = null;
this.content = content;
}
// ... in the mixin class
@JsonCreator
public ContentMixIn(@JsonProperty("type") String type,
@JsonProperty("rendering") String rendering,
@JsonProperty("content") String content) {
}
最佳答案
基本上,我导入了错误的类型,因为我使用的是 Intellij,当它询问要导入哪种类型时没有注意。
与 jackson 合作时,注意类型极其重要。
特别感谢@Sotirios,他就这个问题给了我很多建议,对我调试帮助很大。事实证明,我得到了另一个看起来像这样的类:
public static class Image {
public enum Display {
COVER, CONTAIN, START, END
}
public enum Type {
BASE64, FILE, URL
}
public final Type type; // <-- this!
public final Display display;
public final int padding;
public final String content;
public Image(Type type, Display display, int padding, String content) {
this.type = type;
this.display = display;
this.padding = padding;
this.content = content;
}
}
Jackson 失败了,因为我使用的是 Image.Type
在我的 MixIn 类和 Content.Type
在我的实际类里面。 (它们在代码中看起来相同,因为 Intellij 进行了静态导入)
我还发现您应该始终使用 List<T>
对于 JSON 数组 ( [...]
) 而不是 T[]
关于java - 当我们使用枚举时找不到适合类型的构造函数 - Jackson JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27647129/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!