Skip to main content

Jersey (JAX-RS) JSON HTTP entity payload processing example

JSON (JavaScript Object Notation) is the most used structured data interchange format of the current generation. It is very common for REST clients to use it for data exchange. Several web client frameworks (e.g. AngularJS) natively handle JSON requests and responses. Jersey (JAX-RS) JSON support is very effective and easy to use.

Usually, clients send and receive JSON data as HTTP entity payload with Content-Type header set with value application/JSON.

 JSON HTTP entity payload handling jersey example

In this tutorial we will learn:

  1. Consuming / Reading JSON entity payload to Java Object.
  2. Producing / Writing JSON entity payload from Java Object.
  3. Different JSON processing framework support in Jersey.

Getting started

Jersey inbuilt support three ways to handle JSON data.

  1. POJO based JSON binding - Most widely used approach.
  2. JAXB based JSON binding - It provides XML read and writes capability straightaway.
  3. Low-level JSON read and write

Jersey supports JSON entity provider for these JSON libraries out of the box:

  1. MOXy - Jersey preferred and auto-configure it (if MOXy is on class-path).
  2. Java API for JSON Processing
  3. Jackson - Spring Boot auto-configuration register Jackson as JSON entity provider for Jersey. Hence Jackson used in Spring Boot Jersey application by default.
  4. Jettison

Note: Jettison is not actively developed. We should avoid it.

In this tutorial, we will work on the Movie entity and use POJO-based JSON binding. An example JSON:

{
  "id": 1,
  "title": "The Shawshank Redemption",
  "releaseYear": 1994,
  "imdbRating": 9.3,
  "actors": [
    {
      "id": 200,
      "name": "Tim Robbins"
    },
    {
      "id": 201,
      "name": "Morgan Freeman"
    }
  ]
}

We will create two Java classes to represent Actor and Movie entities.

File: org/geekmj/domain/Actor.java

package org.geekmj.domain;

public class Actor {
	private Long id;
	private String name;

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

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

}

File: org/geekmj/domain/Movie.java

package org.geekmj.domain;

import java.util.List;

public class Movie {
	private Long id;
	private String title;
	private Integer releaseYear;
	private Float imdbRating;
	private List<Actor> actors;

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public Integer getReleaseYear() {
		return releaseYear;
	}

	public void setReleaseYear(Integer releaseYear) {
		this.releaseYear = releaseYear;
	}

	public Float getImdbRating() {
		return imdbRating;
	}

	public void setImdbRating(Float imdbRating) {
		this.imdbRating = imdbRating;
	}

	public List<Actor> getActors() {
		return actors;
	}

	public void setActors(List<Actor> actors) {
		this.actors = actors;
	}
}

Jersey (JAX-RS) JSON payload read and write resource

File: org/geekmj/resource/JsonPayloadResource.java

package org.geekmj.resource;

import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import org.geekmj.domain.Movie;

@Path("/json-payload")
public class JsonPayloadResource {

	/*
	 * This Resource method takes HTTP entity pay-load in JSON format. 
	 * This Resource method gives back HTTP entity pay-load in JSON format. 
	 * Jackson is the default JSON Entity provider for Spring Boot + Jersey application.
	 * It convert JSON in the pay-load to Java Object. 
	 * It also convert Java Object to JSON.
	*/

	@POST
	@Path("/movie")
	@Produces(MediaType.APPLICATION_JSON)
	@Consumes(MediaType.APPLICATION_JSON)
	public Movie takeAndGiveMovie(final Movie movie) {

		System.out.println("Movie Title " + movie.getTitle());
		
		/* Appending (Checked) to title, It will show in response */
		movie.setTitle(movie.getTitle().concat("(Checked)"));
		
		return movie;

	}
}

In the above source code, the Jersey Resource method takeAndGiveMovie is mapped to POST URI /json-payload/movie.

Jackson is the default JSON Entity provider for Spring Boot + Jersey application. It converts JSON HTTP entity payload into Java Object, which is the Movie class object in our example. It also converts Movie Object into JSON which is returned as an HTTP response payload.

Note: We have appended String (checked) in the movie title and it will show in response.

Test this API using Postman

URI : https://localhost:8080/json-payload/movie

Request Header : Content-Type = application/json

JSON Payload Request Data in Postman JSON Payload Request Data in Postman
JSON Payload Response Data Postman

References

  1. Learn about JSON.
  2. Learn about HTTP payload versus form data.
  3. Learn about HTTP entity.
  4. Learn about Java API for JSON Processing.
  5. Learn about reference implementation of Java API for JSON Processing.
  6. Learn about MOXy.
  7. Learn about Jackson.
  8. Learn about Jettison.

Comments

Popular posts from this blog

Extend and reuse an existing AirByte destination connector

AirByte is an open-source ELT (Extract, Load, and Transformation) application. It heavily uses containerization for the deployment of its various components. On the local machine, we need docker to run it. AirByte has an impressive list of source and destination connectors available. One of my use case data destinations is the  ClickHouse data warehouse and its destination connector is not yet (2021-12-08) available. As per the documentation, It seems that creating a destination connector is a non-trivial job. It's a great idea to build an open-source ClickHouse destination connector. However, I tried avoiding the temptation to create one because of the required effort. AirByte has a  MySql destination connector available. ClickHouse provides a MySQL connector for access from any MySQL client. We need to configure Clickhouse to give support for the MySQL connector. Accessing ClickHouse from AirByte using its MySQL destination connector looks promising. However, when ...

Understanding Type Checking

A few examples of types in the context of programming language can be integer, float, character, string, array, etc.  When a program executes then data flow between instructions and values of specific types are assigned to a variable after some operation. It's important for the system to verify if the correct types are used as operands in operations. For e.g. In a sum operation, the expectation for operands to be of numeric type. The program's execution should fail in the case there is inconsistency. We can classify programming languages into two categories based as per their ability to cater to type safety: Dynamically Typed Language Statically Typed Language

Setting Clickhouse column data warehouse at Google Cloud Compute Engine VM

I didn't have a Google Cloud account associated with my email, so I signed up for one. It needs a valid Credit Card and mobile number to check if you are human. On successful sign up I get 300$ to spend within 3 months. Creating a free forever Google Cloud Compute Engine VM As per Google Cloud documentation you can have 1 non-preemptible e2-micro VM instance (1GB 2vCPU, 30GB Disk, etc.) per month free forever in some regions with some restrictions. I wanted the following stuff in my VM before I can install Clickhouse on to that: Ubuntu 20.x LTS SSH access from my machine Enabling SSH-based access to Google Compute Engine VM Step 1 Created an ssh private and public key on my mac using the following command ssh-keygen -t rsa -f ~/.ssh/gcloud-ssh-key -C mrityunjay -b 2048 Step 2 Copied the public key from the console using the following command: cat ~/.ssh/gcloud-ssh-key.pub output ssh-rsa <Gibrish :)> mrityunjay Step 3 I went to Google Cloud Console > Co...