json Jackson无法反序列化单个字段类,尽管存在Creator

djmepvbi  于 2023-08-08  发布在  其他
关注(0)|答案(2)|浏览(108)

我有以下简单的jUnit测试:

class MyTest {
 
   static class SingleField {
        int rank;
        SingleField(int rank) {
            this.rank = rank;
        }

        @Override
        public boolean equals(Object o) {
            if(!(o instanceof  SingleField)) {
                return  false;
            } else {
                return ((SingleField) o).rank == rank;
            }
        }
    }

   @Test
    public void testBasicJacksonParsing() throws JsonProcessingException {
        assertEquals(new SingleField(3), new ObjectMapper().readValue("{\"rank\" : 3}", SingleField.class));
    }
   
}

字符串
不幸的是,当运行时,测试抛出一个MismatchedInputException,其中包含消息:

Cannot construct instance of `com.drfirst.gear.user.context.util.AppUtilTest$SingleField` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator)
 at [Source: (String)"{"rank" : 3}"; line: 1, column: 2]


公认的答案here似乎暗示需要一个全参数构造函数。我显然有一个。我也尝试了相同的单元测试,创建了SingleFieldpublic的构造函数,我还将rank更改为String,确保我也将正在解析的String"{\"rank\" : 3}"更新为"{\"rank\" : \"3\"}"。相同的Exception抛出。
我做错了什么?

hgc7kmma

hgc7kmma1#

原来我需要public setter来处理我的字段。

iaqfqrcu

iaqfqrcu2#

我在一个MavenKotlin项目中遇到了同样的问题,通过添加依赖项解决了这个问题:

<dependency>
    <groupId>com.fasterxml.jackson.module</groupId>
    <artifactId>jackson-module-kotlin</artifactId>
    <version>2.15.2</version>
</dependency>

字符串

相关问题