Jackson 注解 - @JsonAnyGetter
@JsonAnyGetter 允许 getter 方法返回 Map,然后使用该 Map 以与其他属性类似的方式序列化 JSON 的其他属性。
没有@JsonAnyGetter的示例
import java.io.IOException; import java.util.HashMap; import java.util.Map; import com.fasterxml.jackson.databind.ObjectMapper; public class JacksonTester { public static void main(String args[]){ ObjectMapper mapper = new ObjectMapper(); try{ Student student = new Student(); student.add("Name", "Mark"); student.add("RollNo", "1"); String jsonString = mapper .writerWithDefaultPrettyPrinter() .writeValueAsString(student); System.out.println(jsonString); } catch (IOException e) { e.printStackTrace(); } } } class Student { private Map<String, String> properties; public Student(){ properties = new HashMap<>(); } public Map<String, String> getProperties(){ return properties; } public void add(String property, String value){ properties.put(property, value); } }
输出
{ "properties" : { "RollNo" : "1", "Name" : "Mark" } }
Example with @JsonAnyGetter
import java.io.IOException; import java.util.HashMap; import java.util.Map; import com.fasterxml.jackson.annotation.JsonAnyGetter; import com.fasterxml.jackson.databind.ObjectMapper; public class JacksonTester { public static void main(String args[]){ ObjectMapper mapper = new ObjectMapper(); try{ Student student = new Student(); student.add("Name", "Mark"); student.add("RollNo", "1"); String jsonString = mapper .writerWithDefaultPrettyPrinter() .writeValueAsString(student); System.out.println(jsonString); } catch (IOException e) { e.printStackTrace(); } } } class Student { private Map<String, String> properties; public Student(){ properties = new HashMap<>(); } @JsonAnyGetter public Map<String, String> getProperties(){ return properties; } public void add(String property, String value){ properties.put(property, value); } }
输出
{ "RollNo" : "1", "Name" : "Mark" }