DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Enterprise AI Trend Report: Gain insights on ethical AI, MLOps, generative AI, large language models, and much more.

2024 Cloud survey: Share your insights on microservices, containers, K8s, CI/CD, and DevOps (+ enter a $750 raffle!) for our Trend Reports.

PostgreSQL: Learn about the open-source RDBMS' advanced capabilities, core components, common commands and functions, and general DBA tasks.

AI Automation Essentials. Check out the latest Refcard on all things AI automation, including model training, data security, and more.

Related

  • Update User Details in API Test Client Using REST Assured [Video]
  • Create User API Test Client With REST Assured [Video]
  • How to Make a REST API Call in Angular
  • Develop a Spring Boot REST API in AWS: PART 4 (CodePipeline / CI/CD)

Trending

  • Harnessing the Power of SIMD With Java Vector API
  • DSL Validations: Properties
  • Build Your Own Programming Language
  • Enhancing Performance With Amazon Elasticache Redis: In-Depth Insights Into Cluster and Non-Cluster Modes
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. REST API — What Is HATEOAS?

REST API — What Is HATEOAS?

In this article, continue to learn about REST APIs and learn about HATEOAS.

By 
Ranga Karanam user avatar
Ranga Karanam
DZone Core CORE ·
Updated Nov. 25, 19 · Tutorial
Like (21)
Save
Tweet
Share
84.7K Views

Join the DZone community and get the full member experience.

Join For Free

Tabby cat sleeping on a rug

REST API — What Is HATEOAS?

While viewing a web page, you can see data on the page and perform actions with it. How about a REST API? Typically, when you ask for a REST resource, you get the details of the resource back. How about sending the operations that you can do with the resource in the response?

You might also like:  RESTful Web Services With Spring Boot, Gradle, HATEOAS, and Swagger

We Learn

  • What is HATEOAS?
  • Why do you need to use HATEOAS?
  • When do you make use of HATEOAS?

REST API

This is the fifth article in a series of articles on REST APIs:

  • 1 - Introduction to REST API — RESTful Web Services
  • 2 - REST vs SOAP — A Few Perspectives
  • 3 - Designing a REST API — What Is Contract First?
  • 4 - Designing a REST API — What Is Code First Approach?

What Does HATEOAS Stand For?

The term HATEOAS stands for the phrase Hypermedia As The Engine Of Application State. To understand this further, we first need to understand the meaning of Hypermedia.

Have a look at the following web page:

Screenshot of a GitHub webpage

When the browser loads the page, you definitely can see all the content that the page has to offer. More interestingly, the page also allows you to perform a lot of actions around that data, such as:

  • Clicking on buttons (the green "Clone or Download")
  • Clicking on tabs (to view the "Issues", for instance)
  • and several more

Now let's look at how our REST API's behave:

If you look at a typical GET request to a RESTful server, such as this one:

Screenshot of code

The request to GET http://localhost:8080/users retrieves a set of three users' details in this case. Sending a request with GET http://localhost:8080/users/1 will retrieve details of just the first user.

Typically, when we perform a REST request, we only get the data and not any actions around it. This is where HATEOAS comes in the fill in the gap.

A HATEOAS request allows you to not only send the data but also specify the related actions:

Screenshot of code

This example was in the JSON format. An XML format for another example would look something like this:

Screenshot of code

When you send out this request to retrieve account details, you get both:

  • Account number and balance details
  • Links that provide actions to do a deposit/withdrawal/transfer/closure

With HATEOAS, a request for a REST resource gives me both data, and actions related to the data.

Why Do We Need HATEOAS?

The single most important reason for HATEOAS is loose coupling. If a consumer of a REST service needs to hard-code all the resource URLs, then it is tightly coupled with your service implementation. Instead, if you return the URLs, it could use for the actions, then it is loosely coupled. There is no tight dependency on the URI structure, as it is specified and used from the response.

A few significant topics related to HATEOAS are:

HAL — Hypertext Application Language

When you design a RESTful service, there is a need to specify how to return data and links corresponding to a request. HAL is a simple format that gives an easy, consistent way to hyperlink between resources in your REST API. Here is an example:

Screenshot of code

With HAL, you have a few categories of representations:

  • Links:Specified as a combination of
    • Target — Given as a URI
    • Relation — A name
  • Embedded Resources: Other resources contained within a given REST resource
  • State: The actual resource data

If you happen to use the Spring Framework to develop your REST service, then Spring HATEOAS is a good engine to use for your service.

Check out our video on this:

Summary

In this article, we looked at what HATEOAS stands for. With HATEOAS, responses to REST requests return not just the data, but also actions that can be performed with the resource. This helps in making the applications loosely coupled.

Further Reading

REST + MongoDB + HATEOAS?

HATEOAS REST Services With Spring

REST Web Protocols API

Published at DZone with permission of Ranga Karanam, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Update User Details in API Test Client Using REST Assured [Video]
  • Create User API Test Client With REST Assured [Video]
  • How to Make a REST API Call in Angular
  • Develop a Spring Boot REST API in AWS: PART 4 (CodePipeline / CI/CD)

Partner Resources


Comments

ABOUT US

  • About DZone
  • Send feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: