具有多个参数构造函数的 Jackson JSON 反序列化
我已经在我的项目中使用FasterXML / Jackson-Databind一段时间了,一切都很顺利,直到我发现这篇文章并开始使用这种方法来反序列化对象,而无需@JsonProperty注释。
问题是,当我有一个构造函数,它采用多个参数并用@JsonCreator注释修饰这个构造函数时,Jackson会抛出以下错误:
Exception in thread "main" com.fasterxml.jackson.databind.JsonMappingException: 
Argument #0 of constructor [constructor for com.eliti.model.Cruiser, annotations: {interface com.fasterxml.jackson.annotation.JsonCreator=@com.fasterxml.jackson.annotation.JsonCreator(mode=DEFAULT)}] has no property name annotation; must have name when multiple-parameter constructor annotated as Creator
 at [Source: {
  "class" : "com.eliti.model.Cruiser",
  "inventor" : "afoaisf",
  "type" : "MeansTransport",
  "capacity" : 123,
  "maxSpeed" : 100
}; line: 1, column: 1]
我创建了一个小项目来说明这个问题,我试图反序列化的类是这个:
public class Cruise extends WaterVehicle {
 private Integer maxSpeed;
  @JsonCreator
  public Cruise(String name, Integer maxSpeed) {
    super(name);
    System.out.println("Cruise.Cruise");
    this.maxSpeed = maxSpeed;
  }
  public Integer getMaxSpeed() {
    return maxSpeed;
  }
  public void setMaxSpeed(Integer maxSpeed) {
    this.maxSpeed = maxSpeed;
  }
}
要反序列化的代码是这样的:
public class Test {
  public static void main(String[] args) throws IOException {
    Cruise cruise = new Cruise("asd", 100);
    cruise.setMaxSpeed(100);
    cruise.setCapacity(123);
    cruise.setInventor("afoaisf");
    ObjectMapper mapper = new ObjectMapper().enable(SerializationFeature.INDENT_OUTPUT);
    mapper.registerModule(new ParameterNamesModule(JsonCreator.Mode.PROPERTIES));
    String cruiseJson = mapper.writeValueAsString(cruise);
    System.out.println(cruiseJson);
    System.out.println(mapper.readValue(cruiseJson, Cruise.class));
}
我已经尝试删除@JsonCreator,但如果我这样做,则引发以下异常:
Exception in thread "main" com.fasterxml.jackson.databind.JsonMappingException: Can not construct instance of com.eliti.model.Cruise: no suitable constructor found, can not deserialize from Object value (missing default constructor or creator, or perhaps need to add/enable type information?)
 at [Source: {
  "class" : "com.eliti.model.Cruise",
  "inventor" : "afoaisf",
  "type" : "MeansTransport",
  "capacity" : 123,
  "maxSpeed" : 100
}; line: 3, column: 3]
我已尝试发出“mvn全新安装”,但问题仍然存在。
只是为了包括一些额外的信息,我已经彻底研究了这个问题(GitHub问题,博客文章,StackOverflow问答)。以下是我一直在做的一些解包/调查:
调查 1
javap -v 在生成的字节码上给我这个:
 MethodParameters:
      Name                           Flags
      name
      maxSpeed
当谈到构造函数时,所以我猜-parameters标志实际上是为javac编译器设置的。
调查2
如果我使用单个参数创建构造函数,则对象将被初始化,但我希望/需要使用多参数构造函数。
调查 3
如果我在每个字段上使用注释@JsonProperty它也可以工作,但是对于我的原始项目来说,这开销太大了,因为我在构造函数中有很多字段(而且很难用注释重构代码)。
剩下的问题是:如何让 Jackson 在没有注释的情况下使用多个参数构造函数?