Jackson and JSON in Java, finally learn with a coding-first approach:
>> Download the eBookMocking is an essential part of unit testing, and the Mockito library makes it easy to write clean and intuitive unit tests for your Java code.
Get started with mocking and improve your application tests using our Mockito guide:
Handling concurrency in an application can be a tricky process with many potential pitfalls. A solid grasp of the fundamentals will go a long way to help minimize these issues.
Get started with understanding multi-threaded applications with our Java Concurrency guide:
Spring 5 added support for reactive programming with the Spring WebFlux module, which has been improved upon ever since. Get started with the Reactor project basics and reactive programming in Spring Boot:
Since its introduction in Java 8, the Stream API has become a staple of Java development. The basic operations like iterating, filtering, mapping sequences of elements are deceptively simple to use.
But these can also be overused and fall into some common pitfalls.
To get a better understanding on how Streams work and how to combine them with other language features, check out our guide to Java Streams:
Get started with Spring and Spring Boot, through the Learn Spring course:
>> LEARN SPRINGExplore Spring Boot 3 and Spring 6 in-depth through building a full REST API with the framework:
Yes, Spring Security can be complex, from the more advanced functionality within the Core to the deep OAuth support in the framework.
I built the security material as two full courses - Core and OAuth, to get practical with these more complex scenarios. We explore when and how to use each feature and code through it on the backing project.
You can explore the course here:
Spring Data JPA is a great way to handle the complexity of JPA with the powerful simplicity of Spring Boot.
Get started with Spring Data JPA through the guided reference course:
Refactor Java code safely β and automatically β with OpenRewrite.
Refactoring big codebases by hand is slow, risky, and easy to put off. Thatβs where OpenRewrite comes in. The open-source framework for large-scale, automated code transformations helps teams modernize safely and consistently.
Each month, the creators and maintainers of OpenRewrite at Moderne run live, hands-on training sessions β one for newcomers and one for experienced users. Youβll see how recipes work, how to apply them across projects, and how to modernize code with confidence.
Join the next session, bring your questions, and learn how to automate the kind of work that usually eats your sprint time.
1. Overview
In this tutorial, weβll see how to use @JsonFormat in Jackson.
@JsonFormat is a Jackson annotation that allows us to configure how values of properties are serialized or deserialized. For example, we can specify how to format Date and Calendar values according to a SimpleDateFormat format.
2. Maven Dependency
@JsonFormat is defined in the jackson-databind package, so we need the following Maven Dependency:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.2</version>
</dependency>
3. Getting Started
3.1. Using the Default Format
Weβll start by demonstrating the concepts of using the @JsonFormat annotation with a class representing a user.
Since we want to explain the details of the annotation, the User object will be created on request (and not stored or loaded from a database) and serialized to JSON:
public class User {
private String firstName;
private String lastName;
private Date createdDate = new Date();
// standard constructor, setters and getters
}
Building and running this code example returns the following output:
{"firstName":"John","lastName":"Smith","createdDate":1482047026009}
As we can see, the createdDate field is shown as the number of milliseconds since epoch, which is the default format used for Date fields.
3.2. Using the Annotation on a Getter
Weβll now use @JsonFormat to specify the format to serialize the createdDate field.
Letβs look at the User class updated for this change. We annotate the createdDate field as shown to specify the date format.
The data format used for the pattern argument is specified by SimpleDateFormat:
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd@HH:mm:ss.SSSZ")
private Date createdDate;
With this change in place, we build the project again and run it.
And this is the output:
{"firstName":"John","lastName":"Smith","createdDate":"2016-12-18@07:53:34.740+0000"}
Here weβve formatted the createdDate field using the specified SimpleDateFormat format using the @JsonFormat annotation.
The above example demonstrates using the annotation on a field. We can also use it in a getter method (a property).
For instance, we may have a property that is being computed on invocation. We can use the annotation on the getter method in such a case.
Note that weβve also changed the pattern to return just the date part of the instant:
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
public Date getCurrentDate() {
return new Date();
}
And hereβs the output:
{ ... , "currentDate":"2016-12-18", ...}
3.3. Specifying the Locale
In addition to specifying the date format, we can also specify the locale for serialization.
Not specifying this parameter results in performing serialization with the default locale:
@JsonFormat(
shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd@HH:mm:ss.SSSZ", locale = "en_GB")
public Date getCurrentDate() {
return new Date();
}
3.4. Specifying the Shape
Using @JsonFormat with shape set to JsonFormat.Shape.NUMBER results in the default output for Date types β as the number of milliseconds since the epoch.
The parameter pattern is not applicable to this case and is ignored:
@JsonFormat(shape = JsonFormat.Shape.NUMBER)
public Date getDateNum() {
return new Date();
}
Letβs look at the output:
{ ..., "dateNum":1482054723876 }
4. Case-Insensitive Deserialization
Sometimes, we receive JSON documents from various sources, and they donβt follow the same letter case rule in property names. For example, one JSON document has βfirstnameβ: βJohnβ, but others may contain βfirstNameβ: βJohnβ or βFIRSTNAMEβ: βJohnβ.
The default deserializer cannot automatically recognize the property names in different letter cases. Letβs understand the problem quickly through an example.
First, letβs say we have a JSON document as the input:
static final String JSON_STRING = "{\"FIRSTNAME\":\"John\",\"lastname\":\"Smith\",\"cReAtEdDaTe\":\"2016-12-18@07:53:34.740+0000\"}";
As we can see, the three properties βFIRSTNAMEβ, βlastnameβ, and βcReAtEdDaTeβ follow completely different letter case rules. Now, if we deserialize this JSON document to a User object, UnrecognizedPropertyException will be raised:
assertThatThrownBy(() -> new ObjectMapper().readValue(JSON_STRING, User.class)).isInstanceOf(UnrecognizedPropertyException.class);
As the test above shows, weβve used Assertjβs exception assertion to verify that the expected exception is thrown.
To solve this kind of problem, we must make our deserializer perform case-insensitive deserialization. So next, letβs explore how to achieve that using the @JsonFormat annotation.
The @JsonFormat annotation allows us to set a set of JsonFormat.Feature values via the with attribute: @JsonFormat(with = JsonFormat.Feature β¦ ).
Furthermore, JsonFormat.Feature is an enum. It has predefined a set of options to specify property serialization or deserialization behaviors.
The ACCEPT_CASE_INSENSITIVE_PROPERTIES feature tells the deserializer to match property names case-insensitively. To use this feature, we can include it in a class-level @JsonFormat annotation.
Next, letβs create a UserIgnoreCase class with this annotation and feature:
@JsonFormat(with = JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_PROPERTIES)
class UserIgnoreCase {
private String firstName;
private String lastName;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd@HH:mm:ss.SSSZ")
private Date createdDate;
// the rest is the same as the User class
...
};
Now, if we deserialize our JSON input to UserIgnoreCase, it works as expected:
UserIgnoreCase result = new ObjectMapper().readValue(JSON_STRING, UserIgnoreCase.class);
SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSzz");
Date expectedDate = fmt.parse("2016-12-18T07:53:34.740+0000");
assertThat(result)
.isNotNull()
.returns("John", from(UserIgnoreCase::getFirstName))
.returns("Smith", from(UserIgnoreCase::getLastName))
.returns(expectedDate, from(UserIgnoreCase::getCreatedDate));
Itβs worth mentioning that weβve used Assertjβs returns() and from() to assert multiple properties in one single assertion. Itβs pretty convenient and makes the code easier to read.
5. Conclusion
To sum up, we use @JsonFormat to control the output format of Date and Calendar types.
