当我试图使用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 或者添加@JsonIgnore("context")

其他回答

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

public class TestA {
    String SomeString = "asd";

    public String getSomeString () {        return SomeString ;     }

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

虽然我添加了getter和setter,但我得到了相同的错误。后来我发现了一个bug,这是由声纳的建议,我cgahnged的getter和setter作为保护,这是导致问题的原因。一旦我修复了,它就会像预期的那样工作。

在春季启动2.2.5

在添加getter和setter之后

我在字段顶部添加了@JsonIgnore。

As already described, the default configuration of an ObjectMapper instance is to only access properties that are public fields or have public getters/setters. An alternative to changing the class definition to make a field public or to provide a public getter/setter is to specify (to the underlying VisibilityChecker) a different property visibility rule. Jackson 1.9 provides the ObjectMapper.setVisibility() convenience method for doing so. For the example in the original question, I'd likely configure this as

myObjectMapper.setVisibility(JsonMethod.FIELD, Visibility.ANY);

杰克逊>2.0:

myObjectMapper.setVisibility(PropertyAccessor.FIELD, Visibility.ANY);

有关相关配置选项的更多信息和详细信息,我建议查看ObjectMapper.setVisibility()上的JavaDocs。

在我的案例中,问题是Jackson试图序列化一个没有属性和方法的空对象。

正如在异常中所建议的那样,我添加了以下一行以避免在空bean上失败:

杰克逊1.9

myObjectMapper.configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS, false);

杰克逊2。X

myObjectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);

您可以在jackson disable fail_on_empty_beans上找到一个简单的示例