【问题标题】:Why does mapping a List of DTOs fail, when mapping an object containing a list of DTOs is successful?当映射包含 DTO 列表的对象成功时,为什么映射 DTO 列表会失败?
【发布时间】:2019-08-06 06:58:12
【问题描述】:

我正在尝试使用 Jackson 和 Kotlin 将 YAML 文档映射到复杂的 DTO 结构,但似乎在某个地方遇到了误解。

我正在解析的 YAML 文档是

item_names:
  - item:
      id: hummingbird/items/potion
    name: Potion

我在我的系统中将其建模为

data class ItemDto(val id: String)

data class ItemNameDto(val item: ItemDto, val name: String)

data class ItemNamesList(@JsonProperty("item_names") val itemNames: List<ItemNameDto>)
    @Test
    fun `mvce`() {
        val mapper = ObjectMapper(YAMLFactory())
        mapper.registerModule(KotlinModule())

        val itemNameSource = "item_names:\n" +
            "  -\n" +
            "    item:\n" +
            "      id: hummingbird/items/potion\n" +
            "    name: Potion\n"

        val root = mapper.readTree(itemNameSource)
        val listObject: ItemNamesList = mapper.treeToValue(root)
        assertEquals("Potion", listObject.itemNames[0].name)
        System.out.println("root node to pojo container: $listObject")

        val itemNamesNode: JsonNode = root["item_names"]
        val list: List<ItemNameDto> = mapper.treeToValue(itemNamesNode)
        assertEquals("Potion", list[0].name)
        System.out.println("item_names node to list container: $listObject")
    }

测试的输出是:

root node to pojo container: ItemNamesList(itemNames=[ItemNameDto(item=ItemDto(id=hummingbird/items/potion), name=Potion)])

java.lang.ClassCastException: java.util.LinkedHashMap cannot be cast to hummingbird.item.name.ItemName

    at hummingbird.item.name.jackson.MapperTests.mvce(MapperTests.kt:103)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

我坚持的是为什么将源映射到ItemNamesList 可以正常工作,但是从root["item_names"] 映射对象数组,我认为应该给出List&lt;ItemNameDto&gt; 返回一个LinkedHashMap 组成LinkedHashMaps.

【问题讨论】:

    标签: java kotlin jackson


    【解决方案1】:

    TL;DR 答案:

    代替

    val list: List<ItemNameDto> = mapper.treeToValue(itemNamesNode)
    

    你应该写

    val collectionType = mapper.typeFactory.constructCollectionType(List::class.java, ItemNameDto::class.java)
    val list: List<ItemNameDto> = mapper.readValue(mapper.treeAsTokens(itemNamesNode), collectionType)
    

    说明

    看看treeToValue()的实际实现:

    inline fun <reified T> ObjectMapper.treeToValue(n: TreeNode): T = treeToValue(n, T::class.java)
    

    T 在你的情况下应该是 List&lt;ItemNameDto&gt; 但因为泛型在 JVM 上被删除(更多关于 this 问题的内容),它实际上只是一个 List&lt;*&gt;,所以杰克逊不知道该怎么做在普通的旧地图中执行并转换树。

    当你想强制一个特定的type时,一个class定义是不够的(更多关于这个here)!幸运的是,杰克逊为这个确切的问题提供了一些方便的功能。 constructCollectionType() 使用您选择的特定类型创建 JavaType(不是 JavaClass),在这种情况下,Jackson 知道该怎么做!

    旁注:目前没有办法在不对树进行标记的情况下执行此操作,请参阅this github 问题。

    为了使您的代码更具可读性,您可以引入一个扩展函数:

    fun <T : Any> ObjectMapper.constructCollectionType(kClass: KClass<T>): CollectionType? {
      return typeFactory.constructCollectionType(List::class.java, kClass.java)
    }
    

    【讨论】:

    • 非常感谢您的帮助。我根据您的回答创建了一个扩展函数 here
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-10-22
    • 1970-01-01
    • 2012-11-23
    • 1970-01-01
    • 2015-01-25
    • 2022-08-04
    相关资源
    最近更新 更多