Book Image

Modern API Development with Spring 6 and Spring Boot 3 - Second Edition

By : Sourabh Sharma
1 (1)
Book Image

Modern API Development with Spring 6 and Spring Boot 3 - Second Edition

1 (1)
By: Sourabh Sharma

Overview of this book

Spring is a powerful and widely adopted framework for building scalable and reliable web applications in Java, complemented by Spring Boot, a popular extension to the framework that simplifies the setup and configuration of Spring-based applications. This book is an in-depth guide to harnessing Spring 6 and Spring Boot 3 for web development, offering practical knowledge of building modern robust web APIs and services. The book covers a wide range of topics that are essential for API development, including RESTful web service fundamentals, Spring concepts, and API specifications. It also explores asynchronous API design, security, designing user interfaces, testing APIs, and the deployment of web services. In addition to its comprehensive coverage, this book offers a highly contextual real-world sample app that you can use as a reference for building different types of APIs for real-world applications. This sample app will lead you through the entire API development cycle, encompassing design and specification, implementation, testing, and deployment. By the end of this book, you’ll have learned how to design, develop, test, and deploy scalable and maintainable modern APIs using Spring 6 and Spring Boot 3, along with best practices for bolstering the security and reliability of your applications and improving your application's overall functionality.
Table of Contents (21 chapters)
1
Part 1 – RESTful Web Services
7
Part 2 – Security, UI, Testing, and Deployment
12
Part 3 – gRPC, Logging, and Monitoring
16
Part 4 – GraphQL

How to code DI

Have a look at the following example. CartService has a dependency on CartRepository. The CartRepository instantiation is done inside the CartService constructor:

public class CartService {  private CartRepository repository;
  public CartService() {
    this.repository = new CartRepositoryImpl();
  }
}

We can decouple this dependency in the following way:

public class CartService {  private CartRepository repository;
  public CartService(CartRepository repository) {
    this.repository = repository;
  }
}

If you create a bean of the CartRepository implementation, you can easily inject the CartRepository bean using configuration metadata. Before that, let’s have a look at the Spring container again.

You have seen how ApplicationContext can be initialized in the The @Import annotation subsection of this chapter. When it gets created, it takes all the...