1

我正在使用 Kotlin 和 Jongo 来访问 MongoDB。Jongo 使用 Jackson 序列化/反序列化对象,以便从 MongoDB 中保存和读取它们。我使用 Jackson-Kotlin 模块来帮助使用构造函数序列化 Kotlin 数据类。

这是一个可以很好地序列化的数据类的示例:

data class Workflow (
    @field:[MongoId MongoObjectId] @param:MongoId
    var id: String? = null,

    val name: String,
    val states: Map<String, State>
)

这是一个无法反序列化的类似类的示例:

data class Session (
    @field:[MongoObjectId MongoId] @param:MongoId
    var id: String? = null,

    var status: CallStatus,
    var currentState: String,
    var context: MutableMap<String, Any?>,
    val events: MutableMap<String, Event>
)

Jongo 抛出以下异常,因为 Jackson 反序列化失败:

org.jongo.marshall.MarshallingException: Unable to unmarshall result to class example.model.Session from content { "_id" : { "$oid" : "56c4976aceb2503bf3cd92c2"} , "status" : "Ongoing" , "currentState" : "Start" , "context" : { } , "events" : { }}
... bunch of stack trace entries ...
Caused by: java.lang.IllegalArgumentException: Argument #1 of constructor [constructor for example.model.Session, annotations: [null]] has no property name annotation; must have name when multiple-parameter constructor annotated as Creator

如果我像这样完全注释 Session 数据类,它确实有效:

data class Session (
    @field:[MongoObjectId MongoId] @param:MongoId
    var id: String? = null,

    @JsonProperty("status")
    var status: CallStatus,

    @JsonProperty("currentState")
    var currentState: String,

    @JsonProperty("context")
    var context: MutableMap<String, Any?>,

    @JsonProperty("events")
    val events: MutableMap<String, Event>
}

我的问题是,为什么它适用于 Workflow?当 Session 数据类没有完全注释时,导致解组失败的细微差别是什么?

编辑

不同之处在于我测试了从 Gradle 运行它的 Workflow 测试用例,它使用了不同版本的 Kotlin,然后是我从 IDEA IDE 运行的 Session 测试用例。IDEA 的 Kotlin 插件的更新也更新了 IDEA 用来运行测试用例的 Kotlin 版本,我没有注意到。这导致 Kotlin 和 Jackson-Kotlin 库的版本不匹配。下面接受的答案指出了需要配置什么才能让事情再次运行。

4

1 回答 1

2

如果 MongoDB 使用的ObjectMapper没有注册 Jackson-Kotlin 模块,您将收到此错误。您的JsonProperty注释基本上与模块隐式执行的操作相同。但如果它不存在,您将收到大致相同的错误消息。

要看的东西:

  • 您拥有与您的 Kotlin 代码版本相匹配的 Jackson-Kotlin 模块兼容版本。对于 RC 1050 或更新版本,您需要GitHub 上的 README.MD 文件中提到的最新版本的 Jackson 模块。

    Jackson-Kotlin 模块的旧版本与 Kotlin 1.0.0 不兼容。您必须更新,否则将出现静默失败(该模块无法识别 Kotlin 类,因此忽略它)。Kotlin 1.0.0 的版本很快就会在 Maven Central 上发布。同时使用 EAP 存储库:

    maven {
       url  "http://dl.bintray.com/jaysonminard/kohesive"
    }
    

    对于 Kotlin 1.0.0,使用以下之一:

    • 发布2.7.1-1(为杰克逊2.7.x
    • 发布2.6.5-2(为杰克逊2.6.x
    • 发布2.5.5-2(为杰克逊2.5.x

    稍后这将移回 Maven Central。

  • 发送给杰克逊的实际 JSON 是什么

  • 这个错误是来自堆栈跟踪中的 MongoDB,还是肯定涉及 Jackson(它在调用 Jackson 之前是否预处理并确定错误)?
  • MongoDB 是如何获得它的 ObjectMapper 的,你是如何尝试配置它的?
于 2016-02-17T16:39:03.623 回答