Book Image

Spring 5.0 Microservices

By : Niyazi Erdogan
Book Image

Spring 5.0 Microservices

By: Niyazi Erdogan

Overview of this book

Spring is one of the most popular choices among Java developers when it comes to developing applications for enterprises or the web. This course is designed to help you implement microservice architecture in Spring Framework, Spring Boot, and Spring Cloud. You will get started by understanding the guidelines for implementing responsive microservices at scale. After this, you’ll get up to speed with how Spring Boot can be used to deploy serverless autonomous services without the need for a heavyweight application server. As you cover later chapters, you’ll explore advanced topics, such as deploying your microservices to Docker and managing them with Mesos. By the end of this course, you’ll have developed the skills you need to implement microservices using the Spring framework and use them in internet-scale deployments with the help of real-world examples.
Table of Contents (11 chapters)
Chapter 5
Microservices Capability Model
Content Locked
Section 2
Core Capabilities
Core capabilities are those components generally packaged inside a single microservice. For example, let's take an Order microservice. The Order microservice will have two key deployable parts, order.jar developed using Spring Boot and its own database—Order DB. The order.jar will encapsulate service listeners, libraries required for execution, service implementation code, and service APIs or endpoints, and Order DB stores all data required for Order service. Smaller microservices only require these core capabilities. Gartner named this as inner architecture and the capabilities outside of this core as outer architecture.