By default, Spring MVC uses Jackson in this way when you accept or return objects from your web controllers. Benefits : Converting JSON to objects is simple Reading values from objects can use any Java API Objects are independent of Jackson and can therefore be used in other contexts Mapping is customizable with Jackson Modules Disadvantages: philippines mobile number example Upfront work: You need to create classes whose structure matches the JSON objects, then ask Jackson to read your JSON into those objects Introduction to Data Binding Here is a simple example based on a small subset of NEO JSON: Json Copy the code { "id": "54016476", "name": "(2020 GR1)", "closeApproachDate": "2020-04-12", } Let's imagine a class capable of holding data as follows: Java Copy the code class NeoSummaryDetails { public int id; public String name; public LocalDate closeApproachDate; } Jackson is almost ready to use for mapping JSON objects and matching similar objects.
It handles the object being int id a string pretty well, but it needs help converting the string 2020-04-12 to an object LocalDate. It does this using a custom module, which defines a JSON mapping for custom object types. Jackson Data Binding: Custom Styles For mapping LocalDate, Jackson provides a dependency . Add this to your project and configure your ObjectMapper as follows: Java Copy the code ObjectMapper objectMapper = new ObjectMapper() .
registerModule(new JavaTimeModule()); [ this code in the example directory ] Jackson Data Binding: Custom Field Names You may have noticed that I used <key> closeApproachDate in my JSON example above, while NASA's data uses <key> close_approach_date.
I did this because Jackson will use Java's reflection capabilities to match the JSON keys to the Java field names (and they must match exactly).
Most of the time, you can't modify your JSON: it usually comes from an API that you don't control. But you still want to avoid having fields written in snake_case your Java classes. This is possible with an annotation on the field closeApproachDate : Java Copy the code @JsonProperty("close_approach_date") public LocalDate closeApproachDate; [ this code in the example directory ] Creating Custom Objects with JsonSchema2Pojo You’re probably thinking that all this is time-consuming.
By default, Spring MVC
-
- Posts: 9
- Joined: Sun Dec 22, 2024 4:42 am