I have been using FasterXML / Jackson-Databind in my project for a while, and everything works fine until I discovered this post and started using this approach to deserialize objects without @JsonProperty annotations.
The problem is that when I have a constructor that takes several parameters and decorates this constructor with @JsonCreator annotation, Jackson throws the following error:
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.jack son.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]
I created a small project to illustrate the problem, the class I'm trying to execute desserialize is as follows:
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; } }
And the code for desserialize is as follows:
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)); }
I already tried to remove @JsonCreator, but if I do this, it will throw the following exception:
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]
I tried issuing "mvn clean install", but the problem persists.
To include additional information, I carefully studied this issue (GitHub issues, blog posts, StackOverflow Q & A). Here are some of them: debubuging / research, which I did at the end:
Study 1
javap -v in the generated bytecode give me the following:
MethodParameters: Name Flags name maxSpeed
Speaking of the constructor, I assume that the -parameters flag is indeed set for the javac compiler.
Study 2
If I create a constructor with a single parameter, the object is initialized, but I need / need to use the constructor of several parameters.
Study 3
If I use the @JsonProperty annotation for each field, it works just as well, but for my original project this is too much overhead since I have many fields in the constructor (and it is also very difficult to convert the code with annotations).
The question remains: How can I get Jackson to work with several parameter constructors without annotations?