Monday 24 November 2014

Jackson Ignore null / empty values in JSON serialization with @JsonInclude

Hi Guys,

In this post we are going to see how to ignore null and Empty values using Jackson @Include Annotations.
Jackson 2.x provides @JsonInclude annotation to specify the property that should be included during serialization based on its values.

@JsonInclude can have following values
  • Include.ALWAYS indicates that property is serialized irrespective of its value
  • Include.NON_DEFAULT indicates that property is serialized if its value is different from default settings
  • Include.NON_EMPTY indicates that property is serialized if its value is not null and not empty
  • Include.NON_NULL indicates that property is serialized if its value is not null
Jackson 2.x JAR Dependency

To serialize or unserialize JSON using Jackson 2.x requires following three jar files in classpath
  • Core – jackson-core-2.2.3.jar
  • Annotations – jackson-annotations-2.2.3.jar
  • Databind – jackson-databind-2.2.3.jar
Jackson 2.x JAR Download URL
Download Jackson 2.x Libraries

Jackson Ignore null/empty values Example
User.java
In User Java Bean class, city is annotated with @JsonInclude(value=Include.NON_EMPTY) so it will be included in serialization only if its value is non null and non empty string. Similarly, height is annotated with @JsonInclude(value=Include.NON_NULL) so it will included in serialization only if its value is non null.


package in.binding
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
/**
* @author Visakh
*/
public class User {

private String name;
@JsonInclude(value=Include.NON_EMPTY)
private String city;
private Integer age;
@JsonInclude(value=Include.NON_NULL)
private Double height;
private Boolean married;

public User() {
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getCity() {
return city;
}

public void setCity(String city) {
this.city = city;
}

public Integer getAge() {
return age;
}

public void setAge(Integer age) {
this.age = age;
}

public Double getHeight() {
return height;
}

public void setHeight(Double height) {
this.height = height;
}

public Boolean getMarried() {
return married;
}

public void setMarried(Boolean married) {
this.married = married;
}

@Override
public String toString() {
return "User [name=" + name + ", city=" + city + ", age=" + age
+ ", height=" + height + ", married=" + married + "]";
}
}

JsonSerializationExample.java

In JsonSerializationExample, city is set to empty string and height is not set i.e. eventually set to null.

package in.binding;

import java.io.IOException;

import com.fasterxml.jackson.databind.ObjectMapper;

/**
* @author Visakh
*/
public class JsonSerializationExample {

public static void main(String args[]) {

User user = new User();
user.setName("Visakh");
user.setCity(""); //city is set to empty string
user.setAge(23);
// user.setHeight(5.7); height is not set; hence it will be null
user.setMarried(Boolean.FALSE);
System.out.println("User: " + user);

try {
// ObjectMapper provides functionality for data binding between
// Java Bean Objects/POJO and JSON constructs/string
ObjectMapper mapper = new ObjectMapper();

// serialize userList to JSON format and write to file
String jsonString = mapper.writeValueAsString(user);

System.out.println("JSON string: " + jsonString);
} catch (IOException e) {
e.printStackTrace();
}
}
}

Example Output
As shown in log output, city and height are not serialized to JSON string.


  • User: User [name=Visakh, city=, age=23, height=null, married=false]
  • JSON string: {"name":"Visakh","age":23,"married":false}

If you want to ignore null or empty values globally you can set it using Mapper Serialization.
Instead of using @Include in all classes use Serialization in Main class.

  • mapper.setSerializationInclusion(Include.NON_EMPTY);
By using setSerializationInclusion Method you can set it globally.

That's All Folks


No comments:

Post a Comment