Apollo
Status: Bug-fix only
Apollo is heavily used within Spotify, however, most of its development is currently done internally leveraging Apollo's module system. We want to signal this current state to the community by putting the project in maintenance mode.
This project will no longer have new features or accept PRs for new features. We will continue to accept bug fixes and update dependencies.
Apollo is a set of Java libraries that we use at Spotify when writing microservices. Apollo includes modules such as an HTTP server and a URI routing system, making it trivial to implement restful API services.
Apollo has been used in production at Spotify for a long time. As a part of the work to release version 1.0.0 we moved the development of Apollo into the open.
There are two main libraries in Apollo:
Apollo API
The apollo-api library is the Apollo library you are most likely to interact with. It gives you the tools you need to define your service routes and your request/reply handlers.
Here, for example, we define that our service will respond to a GET request on the path /
with the string "hello world"
:
public static void init(Environment environment) {
environment.routingEngine()
.registerAutoRoute(Route.sync("GET", "/", requestContext -> "hello world"));
}
Note that, for an Apollo-based service, you can see the routes defined for a service by querying
/_meta/0/endpoints
.
The apollo-api library provides several ways to help you define your request/reply handlers. You can specify how responses should be serialized (such as JSON). Read more about this library in the Apollo API Readme.
Apollo Core
The apollo-core library manages the lifecycle (loading, starting, and stopping) of your service. You do not usually need to interact directly with apollo-core; think of it merely as "plumbing". For more information about this library, see the Apollo Core Readme.
Apollo Test
In addition to the two main Apollo libraries listed above, to help you write tests for your service we have an additional library called apollo-test. It has helpers to set up a service for testing, and to mock outgoing request responses.
Links
Introduction Website
JavaDocs
Maven site
Diagrams
Code of conduct
This project adheres to the Open Code of Conduct. By participating, you are expected to honor this code.