首页 文章

Jackson ObjectMapper无法反序列化POJO,抛出异常:没有为类型[...]找到合适的构造函数:无法从JSON对象实例化

提问于
浏览
23

我试图测试以下代码但没有成功:

class TestClass
{
  private class ND2Customer
  {
    public String name;
    public String description;
    public String email;
    public Boolean multiuser;

    public String dnszone;
    public String uri;
    public String type;

    public ND2Customer()
    {

    }
  }

  @Test
  public void TestJackson() throws JsonParseException, JsonMappingException, IOException
  {
    String json="{\"description\": \"test1u\", \"dnszone\": \"test1.public.sevenltest.example.com.\", \"uri\": \"http://199.127.129.69/customer/test1\", \"multiuser\": true, \"type\": \"2.0.3-3146\", \"email\": \"test1@com.com\", \"name\": \"test1\"}";
    ObjectMapper mapper = new ObjectMapper();

    ND2Customer casted=mapper.readValue(json, ND2Customer.class);

    String castedback=mapper.defaultPrettyPrintingWriter().writeValueAsString(casted);
    System.out.println(castedback);
  } 
}

这个问题与此不同:Deserializing JSON with Jackson - Why JsonMappingException "No suitable constructor"?

而这一个:JsonMappingException: No suitable constructor found for type [simple type, class ]: can not instantiate from JSON object

而这一个:JsonMappingException: No suitable constructor found for type [simple type, class ]: can not instantiate from JSON object

因为我手动覆盖默认构造函数,而不是子类 .

我该如何解决这个问题?

2 回答

  • 0

    让它静止 . Jackson 不能反序列化到内部阶级

  • 59

    问题可能是 Jackson 无法正确地到达你的 ND2Customer 类来调用它的构造函数,因为它是 private ,因为你的类看起来很好 . 尝试制作 public 并查看是否有效 .

相关问题