Intellij idea json creator generator plugin
Generates @JsonCreator using "JsonCreator" item in generate dropdown menu.
- Download jar
- Add plugin to idea (File->Settings->Plugins->Install plugin from disk...)
- In class open generate menu and select "JsonCreator"
Generated code sample:
@JsonCreator
public SomeJson(
@JsonProperty("name") final String name,
@JsonProperty("count") final int count)
{
this.name = name;
this.count = count;
}