spring-guides / tut-rest

Building REST services with Spring :: Learn how to easily build RESTful services with Spring
https://spring.io/guides/tutorials/rest/
515 stars 413 forks source link

tags: [rest, hateoas, hypermedia, security, testing, oauth] projects: [spring-framework, spring-hateoas, spring-security, spring-security-oauth]

:toc: :project_id: tut-rest :icons: font :source-highlighter: prettify :javaee-api-root: https://docs.oracle.com/javaee/7/api/ :image-width: 500 :book-root: .

= Building REST Services with Spring

REST has quickly become the de facto standard for building web services on the web because REST services are easy to build and easy to consume.

A much larger discussion can be had about how REST fits in the world of microservices. However, for this tutorial, we look only at building RESTful services.

Why REST? REST embraces the precepts of the web, including its architecture, benefits, and everything else. This is no surprise, given that its author (Roy Fielding) was involved in probably a dozen specs which govern how the web operates.

What benefits? The web and its core protocol, HTTP, provide a stack of features:

These are all critical factors when building resilient services. However, that is not all. The web is built out of lots of tiny specs. This architecture lets it easily evolve without getting bogged down in "standards wars".

Developers can draw upon third-party toolkits that implement these diverse specs and instantly have both client and server technology at their fingertips.

By building on top of HTTP, REST APIs provide the means to build:

Note that REST, however ubiquitous, is not a standard per se but an approach, a style, a set of constraints on your architecture that can help you build web-scale systems. This tutorial uses the Spring portfolio to build a RESTful service while takin advantage of the stackless features of REST.

== Getting Started

To get started, you need:

As we work through this tutorial, we use https://spring.io/projects/spring-boot[Spring Boot]. Go to https://start.spring.io/[Spring Initializr] and add the following dependencies to a project:

Change the Name to "Payroll" and then choose Generate Project. A .zip file downloads. Unzip it. Inside, you should find a simple, Maven-based project that includes a pom.xml build file. (Note: You can use Gradle. The examples in this tutorial will be Maven-based.)

To complete the tutorial, you could start a new project from scratch or you could look at the https://github.com/spring-guides/tut-rest[solution repository] in GitHub.

If you choose to create your own blank project, this tutorial walks you through building your application sequentially. You do not need multiple modules.

Rather than providing a single, final solution, the https://github.com/spring-guides/tut-rest[completed GitHub repository] uses modules to separate the solution into four parts. The modules in the GitHub solution repository build on one another, with the links module containing the final solution. The modules map to the following headers:

[#_the_story_so_far] == The Story so Far

NOTE: This tutorial starts by building up the code in the https://github.com/spring-guides/tut-rest/tree/main/nonrest[`nonrest` module].

We start off with the simplest thing we can construct. In fact, to make it as simple as possible, we can even leave out the concepts of REST. (Later on, we add REST, to understand the difference.)

:abbr-jpa: pass:[JPA]

:abbr-mvc: pass:[MVC]

Big picture: We are going to create a simple payroll service that manages the employees of a company. We store employee objects in a (H2 in-memory) database, and access them (through something called {abbr-jpa}). Then we wrap that with something that allows access over the internet (called the Spring {abbr-mvc} layer).

The following code defines an Employee in our system.

.nonrest/src/main/java/payroll/Employee.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/Employee.java[]

====

Despite being small, this Java class contains much:

With this domain object definition, we can now turn to https://spring.io/guides/gs/accessing-data-jpa/[Spring Data JPA] to handle the tedious database interactions.

Spring Data JPA repositories are interfaces with methods that support creating, reading, updating, and deleting records against a back end data store. Some repositories also support data paging and sorting, where appropriate. Spring Data synthesizes implementations based on conventions found in the naming of the methods in the interface.

NOTE: There are multiple repository implementations besides JPA. You can use https://spring.io/projects/spring-data-mongodb#overview[Spring Data MongoDB], https://spring.io/projects/spring-data-cassandra#overview[Spring Data Cassandra], and others. This tutorial sticks with JPA.

Spring makes accessing data easy. By declaring the following EmployeeRepository interface, we can automatically:

.nonrest/src/main/java/payroll/EmployeeRepository.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/EmployeeRepository.java[]

====

To get all this free functionality, all we have to do is declare an interface that extends Spring Data JPA's JpaRepository, specifying the domain type as Employee and the id type as Long.

Spring Data's https://docs.spring.io/spring-data/jpa/reference/repositories.html[repository solution] makes it possible to sidestep data store specifics and, instead, solve a majority of problems by using domain-specific terminology.

Believe it or not, this is enough to launch an application! A Spring Boot application is, at a minimum, a public static void main entry-point and the @SpringBootApplication annotation. This tells Spring Boot to help out wherever possible.

.nonrest/src/main/java/payroll/PayrollApplication.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/PayrollApplication.java[]

====

@SpringBootApplication is a meta-annotation that pulls in component scanning, auto-configuration, and property support. We do not dive into the details of Spring Boot in this tutorial. However, in essence, it starts a servlet container and serves up our service.

An application with no data is not very interesting, so we preload that it has data. The following class gets loaded automatically by Spring:

.nonrest/src/main/java/payroll/LoadDatabase.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/LoadDatabase.java[]

====

What happens when it gets loaded?

Right-click and Run PayRollApplication, and you get:

.Fragment of console output showing preloading of data [%collapsible%open]


... 20yy-08-09 11:36:26.169 INFO 74611 --- [main] payroll.LoadDatabase : Preloading Employee(id=1, name=Bilbo Baggins, role=burglar) 20yy-08-09 11:36:26.174 INFO 74611 --- [main] payroll.LoadDatabase : Preloading Employee(id=2, name=Frodo Baggins, role=thief) ...

====

This is not the whole log, but only the key bits of preloading data.

== HTTP is the Platform

To wrap your repository with a web layer, you must turn to Spring MVC. Thanks to Spring Boot, you need add only a little code. Instead, we can focus on actions:

.nonrest/src/main/java/payroll/EmployeeController.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/EmployeeController.java[]

====

.nonrest/src/main/java/payroll/EmployeeNotFoundException.java [%collapsible%open]

[source,java,tabsize=2]

include::nonrest/src/main/java/payroll/EmployeeNotFoundException.java[]

====

When an EmployeeNotFoundException is thrown, this extra tidbit of Spring MVC configuration is used to render an HTTP 404 error:

.nonrest/src/main/java/payroll/EmployeeNotFoundAdvice.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/EmployeeNotFoundAdvice.java[]

====

To launch the application, you can right-click the public static void main in PayRollApplication and select Run from your IDE.

Alternatively, Spring Initializr creates a Maven wrapper, so you can run the following command:


$ ./mvnw clean spring-boot:run

Alternatively, you can use your installed Maven version, as follows:


$ mvn clean spring-boot:run

When the app starts, you can immediately interrogate it, as follows:


$ curl -v localhost:8080/employees

Doing so yields the following:

[%collapsible%open]


You can see the pre-loaded data in a compacted format.

Now try to query a user that doesn't exist, as follows:


$ curl -v localhost:8080/employees/99

When you do so, you get the following output:

[%collapsible%open]


This message nicely shows an HTTP 404 error with the custom message: Could not find employee 99.

It is not hard to show the currently coded interactions.

[CAUTION]

If you use Windows command prompt to issue cURL commands, the following command probably does not work properly. You must either pick a terminal that support single-quoted arguments, or use double quotation marks and then escape the quotation marks inside the JSON.

To create a new Employee record, use the following command in a terminal (the $ at the beginning signifies that what follows it is a terminal command):

$ curl -X POST localhost:8080/employees -H 'Content-type:application/json' -d '{"name": "Samwise Gamgee", "role": "gardener"}'

Then it stores the newly created employee and sends it back to us:


{"id":3,"name":"Samwise Gamgee","role":"gardener"}

You can update the user. For example, you can change the role:


$ curl -X PUT localhost:8080/employees/3 -H 'Content-type:application/json' -d '{"name": "Samwise Gamgee", "role": "ring bearer"}'

Now we can see the change reflected in the output:


{"id":3,"name":"Samwise Gamgee","role":"ring bearer"}

CAUTION: The way you construct your service can have significant impacts. In this situation, we said update, but replace is a better description. For example, if the name was NOT provided, it would instead get nulled out.

Finally, you can delete users, as follows:


$ curl -X DELETE localhost:8080/employees/3

Now if we look again, it's gone

$ curl localhost:8080/employees/3 Could not find employee 3

This is all well and good, but do we have a RESTful service yet? (The answer is no.)

What's missing?

== What Makes a Service RESTful?

So far, you have a web-based service that handles the core operations that involve employee data. However, that is not enough to make things "RESTful".

In fact, what we have built so far is better described as RPC (Remote Procedure Call), because there is no way to know how to interact with this service. If you published this today, you wouldd also have to write a document or host a developer's portal somewhere with all the details.

This statement of Roy Fielding's may further lend a clue to the difference between REST and RPC:

[quote, Roy Fielding, https://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven]


I am getting frustrated by the number of people calling any HTTP-based interface a REST API. Today’s example is the SocialSite REST API. That is RPC. It screams RPC. There is so much coupling on display that it should be given an X rating.

What needs to be done to make the REST architectural style clear on the notion that hypertext is a constraint? In other words, if the engine of application state (and hence the API) is not being driven by hypertext, then it cannot be RESTful and cannot be a REST API. Period. Is there some broken manual somewhere that needs to be fixed?


The side effect of nnot including hypermedia in our representations is that clients must hard-code URIs to navigate the API. This leads to the same brittle nature that predated the rise of e-commerce on the web. It signifies that our JSON output needs a little help.

[#_spring_hateoas] == Spring HATEOAS

Now we can introduce https://spring.io/projects/spring-hateoas[Spring HATEOAS], a Spring project aimed at helping you write hypermedia-driven outputs. To upgrade your service to being RESTful, add the following to your build:

NOTE: If you are following along in the https://github.com/spring-guides/tut-rest[solution repository], the next section switches to the https://github.com/spring-guides/tut-rest/tree/main/rest[rest module].

.Adding Spring HATEOAS to dependencies section of pom.xml [%collapsible%open]

[source,xml,indent=0]

include::rest/pom.xml[tag=spring-hateoas]

====

This tiny library gives us the constructs that define a RESTful service and then render it in an acceptable format for client consumption.

A critical ingredient to any RESTful service is adding https://tools.ietf.org/html/rfc8288[links] to relevant operations. To make your controller more RESTful, add links like the following to the existing one method in EmployeeController:

.Getting a single item resource [%collapsible%open]

[source,java,tabsize=2,indent=0,highlight=8-9]

include::rest/src/main/java/payroll/EmployeeController.java[tag=get-single-item]

====

You also need to include new imports: [%collapsible%open]

[source,java]

import org.springframework.hateoas.EntityModel; import static org.springframework.hateoas.server.mvc.WebMvcLinkBuilder.*;

====

[NOTE]

This tutorial is based on Spring MVC and uses the static helper methods from WebMvcLinkBuilder to build these links. If you are using Spring WebFlux in your project, you must instead use WebFluxLinkBuilder.

This is very similar to what we had before, but a few things have changed:

What do we mean by "build a link?" One of Spring HATEOAS's core types is Link. It includes a URI and a rel (relation). Links are what empower the web. Before the World Wide Web, other document systems would render information or links, but it was the linking of documents WITH this kind of relationship metadata that stitched the web together.

Roy Fielding encourages building APIs with the same techniques that made the web successful, and links are one of them.

If you restart the application and query the employee record of Bilbo, you get a slightly different response than earlier:

[TIP] .Curling prettier ==== When your curl output gets more complex it can become hard to read. Use this or https://stackoverflow.com/q/27238411/5432315[other tips] to prettify the json returned by curl: ....

The indicated part pipes the output to json_pp and asks it to make your JSON pretty. (Or use whatever tool you like!)

v------------------v

curl -v localhost:8080/employees/1 | json_pp ....

.RESTful representation of a single employee [%collapsible%open]

[source,javascript]

{ "id": 1, "name": "Bilbo Baggins", "role": "burglar", "_links": { "self": { "href": "http://localhost:8080/employees/1" }, "employees": { "href": "http://localhost:8080/employees" } } }

====

This decompressed output shows not only the data elements you saw earlier (id, name, and role) but also a _links entry that contains two URIs. This entire document is formatted using http://stateless.co/hal_specification.html[HAL].

HAL is a lightweight https://tools.ietf.org/html/draft-kelly-json-hal-08[mediatype] that allows encoding not only data but also hypermedia controls, alerting consumers to other parts of the API to which they can navigate. In this case, there is a "self" link (kind of like a this statement in code) along with a link back to the aggregate root.

To make the aggregate root also be more RESTful, you want to include top level links while also including any RESTful components within.

So we modify the following (located in the nonrest module of the completed code):

.Getting an aggregate root [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::nonrest/src/main/java/payroll/EmployeeController.java[tag=get-aggregate-root]

====

We want the following (located in the rest module of the completed code):

.Getting an aggregate root resource [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::rest/src/main/java/payroll/EmployeeController.java[tag=get-aggregate-root]

====

That method, which used to be merely repository.findAll(), is "all grown up."" Not to worry. Now we can unpack it.

CollectionModel<> is another Spring HATEOAS container. It is aimed at encapsulating collections of resources instead of a single resource entity, such as EntityModel<> from earlier. CollectionModel<>, too, lets you include links.

Do not let that first statement slip by. What does "encapsulating collections" mean? Collections of employees?

Not quite.

Since we are talking REST, it should encapsulate collections of employee resources.

That is why you fetch all the employees but then transform them into a list of EntityModel<Employee> objects. (Thanks Java Streams!)

If you restart the application and fetch the aggregate root, you can see what it looks like now:


curl -v localhost:8080/employees | json_pp

.RESTful representation of a collection of employee resources [%collapsible%open]

[source,javascript]

{ "_embedded": { "employeeList": [ { "id": 1, "name": "Bilbo Baggins", "role": "burglar", "_links": { "self": { "href": "http://localhost:8080/employees/1" }, "employees": { "href": "http://localhost:8080/employees" } } }, { "id": 2, "name": "Frodo Baggins", "role": "thief", "_links": { "self": { "href": "http://localhost:8080/employees/2" }, "employees": { "href": "http://localhost:8080/employees" } } } ] }, "_links": { "self": { "href": "http://localhost:8080/employees" } } }

====

For this aggregate root, which serves up a collection of employee resources, there is a top-level "self" link. The "collection" is listed underneath the "_embedded" section. This is how HAL represents collections.

Each individual member of the collection has their information as well as related links.

What is the point of adding all these links? It makes it possible to evolve REST services over time. Existing links can be maintained while new links can be added in the future. Newer clients may take advantage of the new links, while legacy clients can sustain themselves on the old links. This is especially helpful if services get relocated and moved around. As long as the link structure is maintained, clients can still find and interact with things.

[#_simplifying_link_creation] == Simplifying Link Creation

NOTE: If you are following along in the https://github.com/spring-guides/tut-rest[solution repository], the next section switches to the https://github.com/spring-guides/tut-rest/tree/main/evolution[evolution module].

In the code earlier, did you notice the repetition in single employee link creation? The code to provide a single link to an employee, as well as to create an "employees" link to the aggregate root, was shown twice. If that raised a concern, good! There's a solution.

You need to define a function that converts Employee objects to EntityModel<Employee> objects. While you could easily code this method yourself, Spring HATEOAS's RepresentationModelAssembler interface does the work for you. Create a new class EmployeeModelAssembler:

.evolution/src/main/java/payroll/EmployeeModelAssembler.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::evolution/src/main/java/payroll/EmployeeModelAssembler.java[]

====

This simple interface has one method: toModel(). It is based on converting a non-model object (Employee) into a model-based object (EntityModel<Employee>).

All the code you saw earlier in the controller can be moved into this class. Also, by applying Spring Framework's @Component annotation, the assembler is automatically created when the app starts.

NOTE: Spring HATEOAS's abstract base class for all models is RepresentationModel. However, for simplicity, we recommend using EntityModel<T> as your mechanism to easily wrap all POJOs as models.

To leverage this assembler, you have only to alter the EmployeeController by injecting the assembler in the constructor:

.Injecting EmployeeModelAssembler into the controller [%collapsible%open]

[source,java,tabsize=2,indent=0,highlight=8]

include::evolution/src/main/java/payroll/EmployeeController.java[tag=constructor]

...

}

====

From here, you can use that assembler in the single-item employee method one that already exists in EmployeeController:

.Getting single item resource using the assembler [source,java,tabsize=2,indent=0,highlight=7] [%collapsible%open]


include::evolution/src/main/java/payroll/EmployeeController.java[tag=get-single-item]

====

This code is almost the same, except that, instead of creating the EntityModel<Employee> instance here, you delegate it to the assembler. Maybe that is not impressive.

Applying the same thing in the aggregate root controller method is more impressive. This change is also to the EmployeeController class:

.Getting aggregate root resource using the assembler [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::evolution/src/main/java/payroll/EmployeeController.java[tag=get-aggregate-root]

====

The code is, again, almost the same. However, you get to replace all that EntityModel<Employee> creation logic with map(assembler::toModel). Thanks to Java method references, it is super easy to plug in and simplify your controller.

IMPORTANT: A key design goal of Spring HATEOAS is to make it easier to do The Right Thing(TM). In this scenario, that means adding hypermedia to your service without hard coding a thing.

At this stage, you have created a Spring MVC REST controller that actually produces hypermedia-powered content. Clients that do not speak HAL can ignore the extra bits while consuming the pure data. Clients that do speak HAL can navigate your empowered API.

But that is not the only thing needed to build a truly RESTful service with Spring.

== Evolving REST APIs

With one additional library and a few lines of extra code, you have added hypermedia to your application. But that is not the only thing needed to make your service RESTful. An important facet of REST is the fact that it is neither a technology stack nor a single standard.

REST is a collection of architectural constraints that, when adopted, make your application much more resilient. A key factor of resilience is that when you make upgrades to your services, your clients do not suffer downtime.

In the "olden" days, upgrades were notorious for breaking clients. In other words, an upgrade to the server required an update to the client. In this day and age, hours or even minutes of downtime spent doing an upgrade can cost millions in lost revenue.

Some companies require that you present management with a plan to minimize downtime. In the past, you could get away with upgrading at 2:00 a.m. on a Sunday when load was at a minimum. But in today's Internet-based e-commerce with international customers in other time zones, such strategies are not as effective.

https://www.tutorialspoint.com/soap/what_is_soap.htm[SOAP-based services] and https://www.corba.org/faq.htm[CORBA-based services] were incredibly brittle. It was hard to roll out a server that could support both old and new clients. With REST-based practices, it is much easier, especially using the Spring stack.

=== Supporting Changes to the API

Imagine this design problem: You have rolled out a system with this Employee-based record. The system is a major hit. You have sold your system to countless enterprises. Suddenly, the need for an employee's name to be split into firstName and lastName arises.

Uh oh. You did not think of that.

Before you open up the Employee class and replace the single field name with firstName and lastName, stop and think. Does that break any clients? How long will it take to upgrade them? Do you even control all the clients accessing your services?

Downtime = lost money. Is management ready for that?

There is an old strategy that precedes REST by years.

[quote, Unknown] Never delete a column in a database.

You can always add columns (fields) to a database table. But do not take one away. The principle in RESTful services is the same.

Add new fields to your JSON representations, but do not take any away. Like this:

.JSON that supports multiple clients [%collapsible%open]

[source,javascript]

{ "id": 1, "firstName": "Bilbo", "lastName": "Baggins", "role": "burglar", "name": "Bilbo Baggins", "_links": { "self": { "href": "http://localhost:8080/employees/1" }, "employees": { "href": "http://localhost:8080/employees" } } }

====

This format shows firstName, lastName, and name. While it sports duplication of information, the purpose is to support both old and new clients. That means you can upgrade the server without requiring clients to upgrade at the same time. This is good move that should reduce downtime.

Not only should you show this information in both the "old way" and the "new way", but you should also process incoming data both ways.

.Employee record that handles both "old" and "new" clients [%collapsible%open]

[source,java,tabsize=2,indent=0,highlight=26-34]

include::evolution/src/main/java/payroll/Employee.java[]

====

This class is similar to the previous version of Employee, with a few changes:

Of course, not change to your API is as simple as splitting a string or merging two strings. But itis surely not impossible to come up with a set of transforms for most scenarios, right?

[IMPORTANT] ==== Do not forget to change how you preload your database (in LoadDatabase) to use this new constructor.

[source,java,tabsize=2,indent=0]

include::evolution/src/main/java/payroll/LoadDatabase.java[tag=new_constructor]

====

==== Proper Responses Another step in the right direction involves ensuring that each of your REST methods returns a proper response. Update the POST method (newEmployee) in the EmployeeController:

.POST that handles "old" and "new" client requests [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::evolution/src/main/java/payroll/EmployeeController.java[tag=post]

====

You also need to add the imports: [%collapsible%open]

[source,java,tabsize=2,indent=0]

import org.springframework.hateoas.IanaLinkRelations; import org.springframework.http.ResponseEntity;

====

With these tweaks in place, you can use the same endpoint to create a new employee resource and use the legacy name field:


$ curl -v -X POST localhost:8080/employees -H 'Content-Type:application/json' -d '{"name": "Samwise Gamgee", "role": "gardener"}' | json_pp

The output is as follows:

[%collapsible%open]


POST /employees HTTP/1.1 Host: localhost:8080 User-Agent: curl/7.54.0 Accept: / Content-Type:application/json Content-Length: 46

< Location: http://localhost:8080/employees/3 < Content-Type: application/hal+json;charset=UTF-8 < Transfer-Encoding: chunked < Date: Fri, 10 Aug 20yy 19:44:43 GMT < { "id": 3, "firstName": "Samwise", "lastName": "Gamgee", "role": "gardener", "name": "Samwise Gamgee", "_links": { "self": { "href": "http://localhost:8080/employees/3" }, "employees": { "href": "http://localhost:8080/employees" } } }

====

This not only has the resulting object rendered in HAL (both name as well as firstName and lastName), but also the Location header populated with http://localhost:8080/employees/3. A hypermedia-powered client could opt to "surf" to this new resource and proceed to interact with it.

The PUT controller method (replaceEmployee) in EmployeeController needs similar tweaks:

.Handling a PUT for different clients [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::evolution/src/main/java/payroll/EmployeeController.java[tag=put]

====

The Employee object built by the save() operation is then wrapped in the EmployeeModelAssembler to create an EntityModel<Employee> object. Using the getRequiredLink() method, you can retrieve the Link created by the EmployeeModelAssembler with a SELF rel. This method returns a Link, which must be turned into a URI with the toUri method.

Since we want a more detailed HTTP response code than 200 OK, we use Spring MVC's ResponseEntity wrapper. It has a handy static method (created()) where we can plug in the resource's URI. It is debatable whether HTTP 201 Created carries the right semantics, since we do not necessarily "create" a new resource. However, it comes pre-loaded with a Location response header, so we use it. Restart your application, run the following command, and observe the results:


$ curl -v -X PUT localhost:8080/employees/3 -H 'Content-Type:application/json' -d '{"name": "Samwise Gamgee", "role": "ring bearer"}' | json_pp

[%collapsible%open]


That employee resource has now been updated and the location URI has been sent back. Finally, update the DELETE operation (deleteEmployee) in EmployeeController:

.Handling DELETE requests [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::evolution/src/main/java/payroll/EmployeeController.java[tag=delete]

====

This returns an HTTP 204 No Content response. Restart your application, run the following command, and observe the results:


$ curl -v -X DELETE localhost:8080/employees/1

[%collapsible%open]


IMPORTANT: Making changes to the fields in the Employee class requires coordination with your database team, so that they can properly migrate existing content into the new columns.

You are now ready for an upgrade that does not disturb existing clients while newer clients can take advantage of the enhancements.

By the way, are you worried about sending too much information over the wire? In some systems where every byte counts, evolution of APIs may need to take a backseat. However, you should not pursue such premature optimization until you measure the impact of your changes.

[#_building_links_into_your_rest_api] == Building links into your REST API

NOTE: If you are following along in the https://github.com/spring-guides/tut-rest[solution repository], the next section switches to the https://github.com/spring-guides/tut-rest/tree/main/links[links module].

So far, you have built an evolvable API with bare bones links. To grow your API and better serve your clients, you need to embrace the concept of Hypermedia as the Engine of Application State.

What does that mean? This section explores it in detail.

Business logic inevitably builds up rules that involve processes. The risk of such systems is we often carry such server-side logic into clients and build up strong coupling. REST is about breaking down such connections and minimizing such coupling.

To show how to cope with state changes without triggering breaking changes in clients, imagine adding a system that fulfills orders.

As a first step, define a new Order record:

.links/src/main/java/payroll/Order.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::links/src/main/java/payroll/Order.java[]

====

Orders must go through a certain series of state transitions from the time a customer submits an order and it is either fulfilled or cancelled. This can be captured as a Java enum called Status:

.links/src/main/java/payroll/Status.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::links/src/main/java/payroll/Status.java[]

====

This enum captures the various states an Order can occupy. For this tutorial, we keep it simple.

To support interacting with orders in the database, you must define a corresponding Spring Data repository called OrderRepository:

.Spring Data JPA's JpaRepository base interface [%collapsible%open]

[source,java,tabsize=2]

interface OrderRepository extends JpaRepository<Order, Long> { }

====

We also need to create a new exception class called OrderNotFoundException: [%collapsible%open]

[source,java,tabsize=2]

include::links/src/main/java/payroll/OrderNotFoundException.java[]

====

With this in place, you can now define a basic OrderController with the required imports:

.Import Statements [%collapsible%open]

[source,java,tabsize=2]

import java.util.List; import java.util.stream.Collectors;

import static org.springframework.hateoas.server.mvc.WebMvcLinkBuilder.*;

import org.springframework.hateoas.CollectionModel; import org.springframework.hateoas.EntityModel; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController;

====

.links/src/main/java/payroll/OrderController.java [%collapsible%open]

[source,java,tabsize=2]

include::links/src/main/java/payroll/OrderController.java[tag=main] }

====

Before building the OrderModelAssembler, we should discuss what needs to happen. You are modeling the flow of states between Status.IN_PROGRESS, Status.COMPLETED, and Status.CANCELLED. A natural thing when serving up such data to clients is to let the clients make the decision about what they can do, based on this payload.

But that would be wrong.

What happens when you introduce a new state in this flow? The placement of various buttons on the UI would probably be erroneous.

What if you changed the name of each state, perhaps while coding international support and showing locale-specific text for each state? That would most likely break all the clients.

Enter HATEOAS or Hypermedia as the Engine of Application State. Instead of clients parsing the payload, give them links to signal valid actions. Decouple state-based actions from the payload of data. In other words, when CANCEL and COMPLETE are valid actions, you should dynamically add them to the list of links. Clients need to show users the corresponding buttons only when the links exist.

This decouples clients from having to know when such actions are valid, reducing the risk of the server and its clients getting out of sync on the logic of state transitions.

Having already embraced the concept of Spring HATEOAS RepresentationModelAssembler components, the OrderModelAssembler is the perfect place to capture the logic for this business rule:

.links/src/main/java/payroll/OrderModelAssembler.java [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::links/src/main/java/payroll/OrderModelAssembler.java[]

====

This resource assembler always includes the self link to the single-item resource as well as a link back to the aggregate root. However, it also includes two conditional links to OrderController.cancel(id) as well as OrderController.complete(id) (not yet defined). These links are shown only when the order's status is Status.IN_PROGRESS.

If clients can adopt HAL and the ability to read links instead of simply reading the data of plain old JSON, they can trade in the need for domain knowledge about the order system. This naturally reduces coupling between client and server. It also opens the door to tuning the flow of order fulfillment without breaking clients in the process.

To round out order fulfillment, add the following to the OrderController for the cancel operation:

.Creating a "cancel" operation in the OrderController [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::links/src/main/java/payroll/OrderController.java[tag=delete]

====

It checks the Order status before letting it be cancelled. If it is not a valid state, it returns an https://tools.ietf.org/html/rfc7807[RFC-7807] Problem, a hypermedia-supporting error container. If the transition is indeed valid, it transitions the Order to CANCELLED.

Now we need to add this to the OrderController as well for order completion:

.Creating a "complete" operation in the OrderController [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::links/src/main/java/payroll/OrderController.java[tag=complete]

====

This implements similar logic to prevent an Order status from being completed unless in the proper state.

// The ​ entity is a zero-width space and seems to allow us to have the 's' right next to the Order; having no space after breaks the inline code formatting.

Let's update LoadDatabase to pre-load some Order objectss along with the Employee objects it was loading before.

.Updating the database pre-loader [%collapsible%open]

[source,java,tabsize=2,indent=0]

include::links/src/main/java/payroll/LoadDatabase.java[]

====

Now you can test. Restart your application to make sure you are running the latest code changes. To use the newly minted order service, you can perform a few operations:


$ curl -v http://localhost:8080/orders | json_pp

[%collapsible%open]


{ "_embedded": { "orderList": [ { "id": 3, "description": "MacBook Pro", "status": "COMPLETED", "_links": { "self": { "href": "http://localhost:8080/orders/3" }, "orders": { "href": "http://localhost:8080/orders" } } }, { "id": 4, "description": "iPhone", "status": "IN_PROGRESS", "_links": { "self": { "href": "http://localhost:8080/orders/4" }, "orders": { "href": "http://localhost:8080/orders" }, "cancel": { "href": "http://localhost:8080/orders/4/cancel" }, "complete": { "href": "http://localhost:8080/orders/4/complete" } } } ] }, "_links": { "self": { "href": "http://localhost:8080/orders" } } }

====

This HAL document immediately shows different links for each order, based upon its present state.

Now try cancelling an order:


$ curl -v -X DELETE http://localhost:8080/orders/4/cancel | json_pp

NOTE: You may need to replace the number 4 in the preceding URL, based on the specific IDs in your database. That information can be found from the previous /orders call.

[%collapsible%open]


DELETE /orders/4/cancel HTTP/1.1 Host: localhost:8080 User-Agent: curl/7.54.0 Accept: /

< HTTP/1.1 200 < Content-Type: application/hal+json;charset=UTF-8 < Transfer-Encoding: chunked < Date: Mon, 27 Aug 20yy 15:02:10 GMT < { "id": 4, "description": "iPhone", "status": "CANCELLED", "_links": { "self": { "href": "http://localhost:8080/orders/4" }, "orders": { "href": "http://localhost:8080/orders" } } }

====

This response shows an HTTP 200 status code, indicating that it was successful. The response HAL document shows that order in its new state (CANCELLED). Also, the state-altering links gone.

Now try the same operation again:


$ curl -v -X DELETE http://localhost:8080/orders/4/cancel | json_pp

[%collapsible%open]


You can see an HTTP 405 Method Not Allowed response. DELETE has become an invalid operation. The Problem response object clearly indicates that you are not allowed to "cancel" an order already in the "CANCELLED" status.

Additionally, trying to complete the same order also fails:


$ curl -v -X PUT localhost:8080/orders/4/complete | json_pp

[%collapsible%open]


With all this in place, your order fulfillment service is capable of conditionally showing what operations are available. It also guards against invalid operations.

By using the protocol of hypermedia and links, clients can be made sturdier and be less likely to break simply because of a change in the data. Spring HATEOAS eases building the hypermedia you need to serve to your clients.

== Summary

Throughout this tutorial, you have engaged in various tactics to build REST APIs. As it turns out, REST is not just about pretty URIs and returning JSON instead of XML.

Instead, the following tactics help make your services less likely to break existing clients you may or may not control:

It may appear to be a bit of effort to build up RepresentationModelAssembler implementations for each resource type and to use these components in all of your controllers. However, this extra bit of server-side setup (made easy thanks to Spring HATEOAS) can ensure the clients you control (and more importantly, those you do not control) can upgrade with ease as you evolve your API.

This concludes our tutorial on how to build RESTful services using Spring. Each section of this tutorial is managed as a separate subproject in a single github repo:

To view more examples of using Spring HATEOAS, see https://github.com/spring-projects/spring-hateoas-examples.

To do some more exploring, check out the following video by Spring teammate Oliver Drotbohm:

video::WDBUlu_lYas[youtube]

include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/footer.adoc[]