March 2018
Intermediate to advanced
140 pages
2h 42m
English
We built a basic component offering a few services in Lesson 1, Building Microservices with Spring Boot. In this lesson, we will focus on adding more features to make our microservice production ready.
We will discuss how to add these features to our microservice:
We will also discuss how to document our microservice using Swagger. We will look at the basics of securing the microservice with Spring Security.
Exception handling is one of the important parts of developing web services. When something goes wrong, we would want to return a good description of what went wrong to the service consumer. You would not want the service to crash without ...