Building a Hypermedia-Driven RESTful Service using Spring Boot And Spring Hateoas

Reetesh Kumar
6 min readNov 8, 2023

--

Introduction

In the world of web development, building RESTful web services has become a standard practice for creating scalable and maintainable APIs. However, taking REST to the next level by incorporating hypermedia-driven features can provide more flexibility, discoverability, and adaptability to our APIs.

Hypermedia is an important aspect of REST. It lets us build services that decouple client and server to a large extent and let them evolve independently. The representations returned for REST resources contain not only data but also links to related resources. Thus, the design of the representations is crucial to the design of the overall service.

In this blog, we will explore how to build a Hypermedia-Driven RESTful Web Service using Spring Boot, one of the most popular Java frameworks for developing web applications.

What is Hypermedia-Driven REST?

Before we dive into the technical details, let’s briefly understand what hypermedia-driven REST means. Traditional REST APIs rely on fixed URL structures and predefined endpoints. In contrast, hypermedia-driven REST APIs utilize hypermedia controls (such as links and actions) within responses to guide clients on how to interact with the API dynamically.

Hypermedia allows clients to discover available resources and actions without prior knowledge of the API’s structure. It enables loose coupling between clients and servers, making it easier to evolve and extend your API without breaking existing clients.

Setting up a Spring Boot Project

To get started, we’ll need to set up a Spring Boot project. We can use Spring Initializr or your preferred IDE to create a new project. Make sure to include the “Spring Web” and “HATEOAS” dependencies.

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-hateoas</artifactId>
</dependency>

Creating a Hypermedia-Driven REST Controller

Spring HATEOAS provides a number of features that make it easy to create Hypermedia As The Engine Of Application State (HATEOAS)-compliant APIs, including:

  1. Resource representations: Spring HATEOAS provides a number of classes that can be used to represent resources in your API, such as Resource, EntityModel, CollectionModel, and Link.
  2. Link builders: Spring HATEOAS provides a number of link builders that can be used to create links to other resources in your API.
  3. Media type support: Spring HATEOAS supports a number of hypermedia formats, such as HAL and JSON Hyper-Schema.

In Spring Boot, creating a hypermedia-driven REST controller is straightforward. We can start by defining a simple resource class and a controller class. Let’s create a basic “Product” resource:

public class Product {
private String name;
private double price;
private String description;

// Getters and setters
}

@RestController
public class ProductController {

@GetMapping("/products/{id}")
public EntityModel<Product> getProduct(@PathVariable Long id) {
// Retrieve product details
Product product = productService.getProduct(id);

// Create a self-link
Link selfLink = linkTo(methodOn(ProductController.class).getProduct(id)).withSelfRel();

return EntityModel.of(product, selfLink);
}
}

In this example, we’ve defined a “Product” resource with a controller method that returns an EntityModel containing the product data along with a self-link. The self-link points to the same endpoint for retrieving the product, making it discoverable.

Enhancing Hypermedia Controls

To fully embrace hypermedia-driven REST, we can add more hypermedia controls to the API responses. For instance, we can include links to related resources and actions that clients can perform. Here’s an example of adding links to related products:

@GetMapping("/products/{id}")
public EntityModel<Product> getProduct(@PathVariable Long id) {
Product product = productService.getProduct(id);

Link selfLink = linkTo(methodOn(ProductController.class).getProduct(id)).withSelfRel();
Link relatedProductsLink = linkTo(methodOn(ProductController.class).getRelatedProducts(id)).withRel("related-products");

return EntityModel.of(product, selfLink, relatedProductsLink);
}

@GetMapping("/products/{id}/related-products")
public CollectionModel<EntityModel<Product>> getRelatedProducts(@PathVariable Long id) {
List<Product> relatedProducts = productService.getRelatedProducts(id);

List<EntityModel<Product>> productResources = relatedProducts.stream()
.map(product -> EntityModel.of(product,
linkTo(methodOn(ProductController.class).getProduct(product.getId())).withSelfRel()))
.collect(Collectors.toList());

return CollectionModel.of(productResources);
}

In this example, we’ve added a “related-products” link to the product resource, and a separate endpoint to retrieve related products. The related products are returned as a collection with self-links to each product.

Here are different JSON request/response examples for the “Product” resource in the above RESTful API:

Example 1: Create a Product

Request to Create a Product:

{
"name": "Smartphone",
"description": "High-end smartphone with advanced features",
"price": 699.99
}

Response for Created Product:

{
"message": "Product created successfully",
"product": {
"id": 1,
"name": "Smartphone",
"description": "High-end smartphone with advanced features",
"price": 699.99,
"_links": {
"self": {
"href": "/products/1"
},
"related-products": {
"href": "/products/1/related"
}
}
}
}

In this example, we’re creating a new product, and the response includes the newly created product with hypermedia links, including a self-link and a link to related products.

Example 2: Retrieve a Product

Request to Retrieve a Product:

 GET /products/1

Response for Retrieved Product:

{
"product": {
"id": 1,
"name": "Smartphone",
"description": "High-end smartphone with advanced features",
"price": 699.99,
"_links": {
"self": {
"href": "/products/1"
},
"related-products": {
"href": "/products/1/related"
}
}
}
}

In this example, we’re making a GET request to retrieve a specific product by its ID, and the response includes the product with hypermedia links.

Example 3: Update a Product

Request to Update a Product:

{
"name": "Updated Smartphone",
"description": "Updated high-end smartphone with advanced features",
"price": 799.99
}

Response for Updated Product:

{
"message": "Product updated successfully",
"product": {
"id": 1,
"name": "Updated Smartphone",
"description": "Updated high-end smartphone with advanced features",
"price": 799.99,
"_links": {
"self": {
"href": "/products/1"
},
"related-products": {
"href": "/products/1/related"
}
}
}
}

In this example, we’re updating an existing product, and the response includes the updated product with hypermedia links.

Example 4: List Related Products

Let’s create a related product as shown below:

Request to List Related Products:

GET /products/1/related-products

Response for Related Products:

{
"_embedded": {
"productList": [
{
"id": 2,
"name": "Related Product A",
"price": 49.99,
"description": "Description of Related Product A",
"relatedProducts": null,
"_links": {
"self": {
"href": "http://localhost:8080/products/2"
}
}
}
]
}
}

In this example, we’re making a GET request to retrieve related products for the product with ID 1, and the response includes a list of related products with hypermedia links.

Conclusion

Building a hypermedia-driven RESTful web service using Spring Boot can significantly improve the discoverability and flexibility of our API. By incorporating hypermedia controls, we enable clients to navigate your API dynamically, reducing the need for hardcoded URLs and enhancing the API’s evolvability.

Remember that this is just the beginning of your hypermedia-driven journey. There are various hypermedia formats and standards, such as HAL and JSON-LD, that you can explore to further enrich your API’s capabilities. It’s essential to design your API with a focus on user experience and adaptability, and hypermedia-driven REST is a powerful approach to achieving these goals.

The complete source code for this article can be found on GitHub.

Happy Learning !!!

--

--

Reetesh Kumar

Software developer. Writing about Java, Spring, Cloud and new technologies. LinkedIn: www.linkedin.com/in/reeteshkumar1