Book Image

Microservices with Clojure

By : Anuj Kumar
Book Image

Microservices with Clojure

By: Anuj Kumar

Overview of this book

The microservice architecture is sweeping the world as the de facto pattern with which to design and build scalable, easy-tomaintain web applications. This book will teach you common patterns and practices, and will show you how to apply these using the Clojure programming language. This book will teach you the fundamental concepts of architectural design and RESTful communication, and show you patterns that provide manageable code that is supportable in development and at scale in production. We will provide you with examples of how to put these concepts and patterns into practice with Clojure. This book will explain and illustrate, with practical examples, how teams of all sizes can start solving problems with microservices. You will learn the importance of writing code that is asynchronous and non-blocking and how Pedestal helps us do this. Later, the book explains how to build Reactive microservices in Clojure that adhere to the principles underlying the Reactive Manifesto. We finish off by showing you various ways to monitor, test, and secure your microservices. By the end, you will be fully capable of setting up, modifying, and deploying a microservice with Clojure and Pedestal.
Table of Contents (18 chapters)
Title Page
Dedication
Packt Upsell
Contributors
Preface
Index

RESTful APIs


Web service APIs that conform to REST architecture is called RESTful APIs. Microservices mostly implement the HTTP-based RESTful APIs that are stateless and have a base URI and a media type (https://en.wikipedia.org/wiki/Media_type) for the representation of resources. It also supports predefined standard operations that are mapped to HTTP methods such as GET, POST, PUT, DELETE, and more.

For example, as shown in the following table, the Order service may define an API /orders to get access to the orders that it maintains. It can support a GET method to look up all the orders or get a specific order by specifying the order ID. It can also allow clients to create new orders by using the POST method or create an order with a specific ID by using the PUT method. Similarly, it can support the PUT method to update order details and the DELETE method to delete an order by specifying the order ID explicitly.

URI

HTTP method

Operation

Description

GET https://server/orders

GET

Read

Gets all the...