当我试图使用Jackson序列化一个非常简单的对象时,我得到了一个异常。错误:

jsonmappingexception:没有找到序列化器 类MyPackage。TestA和没有属性 发现以创建BeanSerializer(为避免异常,禁用 SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS))

下面是要序列化的简单类和代码。

有人能告诉我为什么我得到这个错误吗?

public class TestA {
    String SomeString = "asd";
}

TestA testA = new TestA();
ObjectMapper om = new ObjectMapper();
try {
    String testAString = om.writeValueAsString(testA); // error here!

    TestA newTestA = om.readValue(testAString, TestA.class);
} catch (JsonGenerationException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (JsonMappingException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

当前回答

这个问题可能是因为您将变量声明为私有。 如果你把它改成public,就可以了。

更好的选择是使用getter和setter方法。

这样问题就解决了!

其他回答

Jackson使用getter和setter序列化。/反序列化。 所以在模型类中添加getter和setter。

请在bean的类级别使用此命令:

@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"})

添加setter和getter也将解决这个问题,因为它为我固定。 为例:

public class TestA {
    String SomeString = "asd";

    public String getSomeString () {        return SomeString ;     }

    public void setSomeString (String SS ) {        SomeString = SS ;   } 
}

如果可以编辑包含该对象的类,我通常只添加注释

import com.fasterxml.jackson.annotation.JsonIgnore;

@JsonIgnore 
NonSerializeableClass obj;

如果使用Lomdok libraray (https://projectlombok.org/),则向数据对象类添加@Data (https://projectlombok.org/features/Data)注释。