Akka HTTP Quickstart for Java
Akka HTTP offers a general toolkit for providing and consuming HTTP-based services. The Akka HTTP modules implement a full server- and client-side HTTP stack on top of akka-actor
and akka-stream
. A typical application does not sit on top of Akka HTTP. Instead, Akka HTTP makes it easier to build integration layers based on HTTP, and therefore stays on the sidelines. This allows you to base your app on what makes sense and use Akka HTTP for HTTP integration.
Akka HTTP is not a framework–not because we don’t like frameworks–but to provide maximum flexibility. For example, you might use the Play framework to implement browser-based interactions or Lagom framework for creating microservices, both of them are also based on Akka.
Akka HTTP follows a rather open design and often offers several APIs for accomplishing the same thing. You can choose the API with the level of abstraction that best suits your application. If you have trouble achieving something using a high-level API, you can probably find a lower-level API to use. The low-level APIs offer more flexibility, but might require you to write more application code.
This guide highlights Akka HTTP fundamentals in the context of a simple user registry REST service. Within 30 minutes, you should be able to:
- Download the quickstart project and run the app.
- Follow this guide to explore the code.
Prerequisite
Having a basic understanding of Akka actors will make it easier to understand the example. If you are new to Akka, we recommend completing the Akka Quickstart before this tutorial.
You can run the Akka HTTP example project on Linux, MacOS, or Windows. The only prerequisite is Java 17 or later, and an installation of maven.
Downloading the example
The Akka HTTP example for Java is a zipped project that includes a maven build file. Download and unzip the example as follows:
- Download the project zip file.
- Extract the zip file to a convenient location.
- On Linux and MacOS systems, open a terminal and use the command
unzip
akka-quickstart-java.zip. - On Windows, use a tool such as File Explorer to extract the project.
Running the example
To run Hello World:
In a console, change directories to the top level of the unzipped project.
For example, if you used the default project name, akka-http-quickstart
, and extracted the project to your root directory, from the root directory, enter: cd akka-http-quickstart
Start with:
mvn compile exec:exec
When you run mvn, it downloads project dependencies, builds the project, starts an Akka HTTP server, and runs the example application.
The output should look something like this:
[INFO] --- exec:3.0.0:exec (default-cli) @ akka-http-seed-java ---
[2024-04-18 07:42:11,718] [INFO] [akka.event.slf4j.Slf4jLogger] [HelloAkkaHttpServer-akka.actor.default-dispatcher-4] [] - Slf4jLogger started
[2024-04-18 07:42:11,980] [INFO] [akka.actor.typed.ActorSystem] [ForkJoinPool.commonPool-worker-1] [] - Server online at http://127.0.0.1:8080/
The Akka HTTP server is now running, and you can test it by sending simple HTTP requests.
You can restart it by ctrl-c
and run mvn
again.
Example app overview
The user registry example contains functionality for adding, retrieving, or deleting a single user and for retrieving all users. Akka HTTP provides a domain-specific language (DSL) to simplify the definition of endpoints as a Route
. In this example, a Route
defines: the paths /users
and /user
, the available HTTP methods, and when applicable, parameters or payloads.
When the example app starts up, it creates an ActorSystem with a UserRegistry
Actor and binds the defined routes to a port, in this case, localhost:8080
. When the endpoints are invoked, they interact with the UserRegistry
Actor, which contains the business logic. The diagram below illustrates runtime behavior, where that the HTTP server receives for the defined route
endpoints, which are handled by the UserRegistry
actor:
Exercising the example
To get started, try registering and retrieving a few users. You simply need to know the appropriate parameters for the requests. In our example app, each user has a name
, an age
, and a countryOfResidence
.
You pass request parameters in JSON format. While you could do this in a browser, it is much simpler to use one of the following:
- A command line tool, such as cURL.
- Browser add-ons such as RESTClient for Firefox or Postman for Chrome.
Follow the steps appropriate for your tool:
cURL commands
Open a shell that supports cURL and follow these steps to add and retrieve users:
Copy and paste the following lines to create a few users (enter one command at a time):
curl -H "Content-type: application/json" -X POST -d '{"name": "MrX", "age": 31, "countryOfResidence": "Canada"}' http://localhost:8080/users
curl -H "Content-type: application/json" -X POST -d '{"name": "Anonymous", "age": 55, "countryOfResidence": "Iceland"}' http://localhost:8080/users
curl -H "Content-type: application/json" -X POST -d '{"name": "Bill", "age": 67, "countryOfResidence": "USA"}' http://localhost:8080/users
The system should respond after each command to verify that the user was created.
To retrieve all users, enter the following command:
curl http://localhost:8080/users
The system responds with the list of users:
{"users":[{"name":"Anonymous","age":55,"countryOfResidence":"Iceland"},{"name":"MrX","age":31,"countryOfResidence":"Canada"},{"name":"Bill","age":67,"countryOfResidence":"USA"}]}
To retrieve a specific user, enter the following command:
curl http://localhost:8080/users/Bill
The system should respond with the following:
{"name":"Bill","age":67,"countryOfResidence":"USA"}
Finally, it is possible to delete users:
curl -X DELETE http://localhost:8080/users/Bill
The response should be:
User Bill deleted.
Browser-based clients
Open a tool such as RESTClient or Postman and follow these steps to create and retrieve users:
To create users:
- Select the
POST
method. - Enter the URL:
http://localhost:8080/users
- Set the Header to
Content-Type: application/json
. - In the body, copy and paste the following lines to create three users (send each payload separately). Note: for Postman, you might need to specify that you want to send
raw
data.
{"name": "MrX", "age": 31, "countryOfResidence": "Canada"}
{"name": "Anonymous", "age": 55, "countryOfResidence": "Iceland"}
{"name": "Bill", "age": 67, "countryOfResidence": "USA"}
The system should respond after each command to verify that the user was created.
To retrieve all users:
- Select the
GET
method. - Enter the URL:
http://localhost:8080/users
- Send the request.
The system should respond with a list of users in JSON format.
Learning from the example
Congratulations, you just ran and exercised your first Akka HTTP app! You got a preview of how routes make it easy to communicate over HTTP.
The example is implemented in the following three source files:
QuickstartApp.java
– contains the main method which bootstraps the applicationUserRoutes.java
– Akka HTTProutes
defining exposed endpointsUserRegistry.java
– the actor which handles the registration requests
First, let’s dissect the backend logic.