@JsonUnwrapped禁用了Jackson的fail_on_unknown属性

时间:2013-04-16 13:12:00

标签: java json jackson deserialization ignore

我正在尝试编写一个简单的类来验证JSON输入字符串,如果它可以转换为目标 JAVA 对象。 如果在输入JSON字符串中找到任何未知字段,验证器应该失败。 这一切都按预期工作,除非我用@JsonUnwrapped注释A类中的B对象,然后对象映射器将默默地忽略未知属性而不会失败。

这是我的代码:

A类:

public class A implements Serializable{


protected String id;
protected String name;


protected @JsonUnwrapped B b;

public A(){

}
public A(String id, String name, B b) {
    super();
    this.id = id;
    this.name = name;
    this.b = b;
}

     //GETTERS/SETTERS

}

B类:

  public class B {


protected String innerId;
protected String innerName;

public B(){

}
public B(String innerId, String innerName) {
    super();
    this.innerId = innerId;
    this.innerName= innerName;
}
    //GETTERS/SETTERS
 }

验证员类:

 public class JsonValidator{
         public boolean validate(){

             ObjectMapper mapper = new ObjectMapper();

        //mapper.configure(DeserializationFeature.UNWRAP_ROOT_VALUE, true);
        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, true);

        try {
                mapper.enable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
        A a = mapper.readValue(
                          JsonValidatorBean.class.getResourceAsStream("sample.json"),
                          A.class);
                 } catch (JsonParseException e) {
            e.printStackTrace();
         } catch (JsonMappingException e) {
                e.printStackTrace();
         } catch (IOException e) {
               e.printStackTrace();
         }

}

要验证的JSON:

{
   "id": "aaaa",
   "naome": "aaa",    
   "innerId" : "bbbb",
   "innerName" : "bbb"

}

我正在使用杰克逊2.1 我希望这段代码在未知属性“ naome ”上失败,但它不会被忽略。 如果我删除@JsonUnwrapped并使Json适应嵌入对象,则上述代码会按预期失败。

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

是的,这是真实的陈述。由于从父上下文传递未包装的属性所需的逻辑,无法有效地验证哪些属性可能合法地映射到子POJO(正在解包的属性),哪些不是。

有一个RFE试图改进东西,以捕捉不可映射的属性,但当前版本(包括2.2)不能同时解包和防止不可映射的属性。