
Jackson - Serialization Annotations
- Jackson - @JsonAnyGetter
- Jackson - @JsonGetter
- Jackson - @JsonPropertyOrder
- Jackson - @JsonRawValue
- Jackson - @JsonValue
- Jackson - @JsonRootName
- Jackson - @JsonSerialize
Jackson - Deserialization Annotations
- Jackson - @JsonCreator
- Jackson - @JacksonInject
- Jackson - @JsonAnySetter
- Jackson - @JsonSetter
- Jackson - @JsonDeserialize
- Jackson - @JsonEnumDefaultValue
Jackson - Property Inclusion Annotations
- Jackson - @JsonIgnoreProperties
- Jackson - @JsonIgnore
- Jackson - @JsonIgnoreType
- Jackson - @JsonInclude
- Jackson - @JsonAutoDetect
Jackson - Type Handling Annotations
Jackson - General Annotations
- Jackson - @JsonProperty
- Jackson - @JsonFormat
- Jackson - @JsonUnwrapped
- Jackson - @JsonView
- Jackson - @JsonManagedReference
- Jackson - @JsonBackReference
- Jackson - @JsonIdentityInfo
- Jackson - @JsonFilter
Jackson - Miscellaneous
Jackson - Resources
Jackson Annotations - Custom Annotation
Overview
We can create custom annotation easily using @JacksonAnnotationsInside annotation.
Create a Custom Annotation
Create a Custom annotation which maintains property order and excludes null values during serialization.
@Retention(RetentionPolicy.RUNTIME) @JacksonAnnotationsInside @JsonInclude(value = Include.NON_NULL) @JsonPropertyOrder({ "rollNo", "id", "name" }) @interface CustomAnnotation {}
Apply the Custom Annotation
@CustomAnnotation class Student { ... }
Example - Serialization with Custom Annotation
JacksonTester.java
package com.tutorialspoint; import java.io.IOException; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.text.ParseException; import com.fasterxml.jackson.annotation.JacksonAnnotationsInside; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.databind.ObjectMapper; public class JacksonTester { public static void main(String args[]) throws IOException, ParseException { ObjectMapper mapper = new ObjectMapper(); Student student = new Student(1,13, "Mark"); String jsonString = mapper .writerWithDefaultPrettyPrinter() .writeValueAsString(student); System.out.println(jsonString); } } @CustomAnnotation class Student { public int id; public int rollNo; public String name; public String otherDetails; Student(int id, int rollNo, String name){ this.id = id; this.rollNo = rollNo; this.name = name; } } @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotationsInside @JsonInclude(value = Include.NON_NULL) @JsonPropertyOrder({ "rollNo", "id", "name" }) @interface CustomAnnotation {}
Output
Run the JacksonTester and verify the output −
{ "rollNo" : 13, "id" : 1, "name" : "Mark" }
Here we can see, using @JacksonAnnotationsInside to create a custom annotation and applied the same.
Advertisements