Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Spring Boot 3.0 Cookbook
Spring Boot 3.0 Cookbook

Spring Boot 3.0 Cookbook: Proven recipes for building modern and robust Java web applications with Spring Boot

eBook
R$49.99 R$178.99
Paperback
R$222.99
Subscription
Free Trial
Renews at R$50p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Spring Boot 3.0 Cookbook

Building RESTful APIs

RESTful APIs are crucial in modern cloud apps for seamless data exchange, enabling interoperability, scalability, and efficient communication between services. Spring Boot simplifies RESTful authoring by providing a framework for quick, efficient development, auto-configuration, and integrated tools.

In this chapter, you will acquire the skills to create RESTful services and consume them seamlessly from other applications. You will also learn how to create automated tests for your RESTful APIs using the features provided by Spring Boot and other popular tools.

In this chapter, we’re going to cover the following main recipes:

  • Creating a RESTful API
  • Defining responses and the data model exposed by the API
  • Managing errors in a RESTful API
  • Testing a RESTful API
  • Using OpenAPI to document our RESTful API
  • Consuming a RESTful API from another Spring Boot application using FeignClient
  • Consuming a RESTful API from another Spring...

Technical requirements

To complete this chapter’s recipes, you will need a computer with any OS (I use Ubuntu on Windows Subsystem for Linux – WSL), an editor such as Visual Studio Code (https://code.visualstudio.com/) or IntelliJ Idea (https://www.jetbrains.com/idea/), and Java OpenJDK 17 or higher.

There are multiple distributions of Java from different vendors – if you already have one installed, you can continue using it; if you need to install one, you can use Eclipse Adoptium distribution (https://adoptium.net/).

If you use Visual Studio Code, I recommend installing Extension Pack for Java (https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-pack) and Spring Boot Extension Pack (https://marketplace.visualstudio.com/items?itemName=vmware.vscode-boot-dev-pack).

If you don’t have a tool to perform HTTP requests, you could use curl (https://curl.se/) or Postman (https://www.postman.com/).

Finally, you can download the complete...

Creating a RESTful API

A RESTful API is a standardized way for software components to communicate over the internet using HTTP methods and URLs. You should learn it because it’s fundamental for modern web and cloud application development. It promotes scalable, flexible, and stateless communication, enabling developers to design efficient and widely compatible systems. Understanding RESTful APIs is crucial for building and integrating services.

When I was a child I played with football-player cards, exchanging cards that I had multiples of with my friends. My children, some decades later, still play this game. Throughout this chapter, you will create a system to manage a football card-trading game, with teams, players, albums, and cards. In this recipe, you will create a RESTful API exposing Create, Read, Update, and Delete (CRUD) operations on football players.

Getting ready

To create a RESTful API, Spring Boot provides a great tool named Spring Initializr. You can...

Defining responses and the data model exposed by the API

In the previous recipe, we created a very simple RESTful API. To develop a RESTful API that provides a positive user experience for its consumers, it is essential to incorporate both standard response codes and a consistent data model. In this recipe, we will enhance the previous RESTful API by returning standard response codes and creating a data model for our players endpoint.

Getting ready

You can use the project generated in the previous recipe or download the sample from the GitHub repository: https://github.com/PacktPublishing/Spring-Boot-3.0-Cookbook/.

You can find the code to start this exercise in the chapter1/recipe1-2/start folder.

How to do it...

In this recipe, we will create a folder structure to contain different types of classes for our project. We will define a data model to expose in our RESTful API, along with a service to provide the operations needed by the API.

Note that all of the content...

Managing errors in a RESTful API

In the previous recipe, we enhanced our RESTful API by using complex data structures. However, the application was not able to manage some common errors or return standard response codes. In this recipe, l we will enhance the previous RESTful API by managing common errors and returning consistent response codes following the standards.

Getting ready

You can use the project generated in the previous recipe or download the sample from the GitHub repository at https://github.com/PacktPublishing/Spring-Boot-3.0-Cookbook/.

You can find the code to start this exercise in the chapter1/recipe1-3/start folder.

How to do it...

In this recipe, we will modify the RESTful API created in the previous recipe to handle the exceptions that can be raised by our application and we’ll return the most appropriate HTTP response code.

All content created in the following steps will be under the src/main/java/com/packt/football folder or one of the...

Testing a RESTful API

Testing the application manually can be tiring, especially when dealing with challenging scenarios that are hard to validate. Additionally, it lacks scalability in terms of development productivity. Hence, I highly recommend applying automated testing.

By default, Spring Boot includes the Testing starter that provides the basic components for unit and integration testing. In this recipe, we’ll learn how to implement a unit test for our RESTful API.

Getting ready

In this recipe, we’ll create unit tests for the RESTful API created in the previous recipe. I prepared a working version in case you haven’t completed it yet. You can find it in the book’s GitHub repository at https://github.com/PacktPublishing/Spring-Boot-3.0-Cookbook/. You can find the code to start this recipe in the chapter1/recipe1-4/start folder.

How to do it...

Let’s add some tests to our RESTful API that will validate our application whenever we...

Using OpenAPI to document our RESTful API

Now that we have a RESTful API, we can create a consumer application. We could create an application and just perform HTTP requests. That would require that we provide the consumers with the source code of our application and that they understand it. But what if they are developing their application in a different language and they don’t know Java and Spring Boot? For this reason, OpenAPI was created. OpenAPI is a standard to document RESTful APIs and can be used to generate client applications. It’s widely adopted and is supported by different languages and frameworks. Spring Boot’s support for OpenAPI is excellent.

In this recipe, we’ll learn how to add OpenAPI support to our RESTful API and consume it using the tools provided by OpenAPI.

Getting ready

In this recipe, we will enhance the RESTful API created in the previous recipe. If you haven’t completed the previous recipe, you can find a working...

Consuming a RESTful API from another Spring Boot application using FeignClient

Now that we have a RESTful API and it’s properly documented, we can create a consumer application. There are many tools to generate the client code from the OpenAPI specification, but in this project, we will create the client code manually for learning purposes.

Getting ready

We will enhance the RESTful API created in the previous recipe. If you haven’t completed that yet, you can find a working version in the book’s GitHub repo at https://github.com/PacktPublishing/Spring-Boot-3.0-Cookbook.

You can find the code to start this exercise in the chapter1/recipe1-6/start folder.

We will create a new Spring Boot application using the Spring Initializr tool again (https://start.spring.io).

How to do it...

We’ll create a Spring Boot application consuming the Football RESTful API created in the previous recipe:

  1. First, we’ll create a new Spring Boot application...

Consuming a RESTful API from another Spring Boot application using RestClient

In this recipe, we’ll use a new component introduced in Spring Framework 6.1 and available in Spring Boot since version 3.2. In the previous recipe, we created a FeignClient by creating an interface in the client application and defining the same methods available in the target service. By using the RestClient component, we will have a fluent API that offers an abstraction over HTTP libraries. It allows converting from Java objects to HTTP requests, and the other way round, the creation of objects from the HTTP responses.

Getting ready

We will enhance the RESTful API created in the Using OpenAPI to document our RESTful API recipe. If you haven’t completed it yet, you can find a working version in the book’s GitHub repo at https://github.com/PacktPublishing/Spring-Boot-3.0-Cookbook.

You can find the code to start this exercise in the chapter1/recipe1-7/start folder.

We will...

Mocking a RESTful API

The main drawback of using a remote service as we did in the previous recipes is that you need the remote service running when you test your client application. To tackle this scenario, you can mock a remote server. By mock, I mean simulating the behavior of a component or service, in this case, the remote service.

Mocking a remote dependency in a test can be useful for several reasons. One of the main reasons is that it allows you to test your code in isolation, without having to worry about the behavior of the remote dependency. This can be especially useful if the remote dependency is unreliable or slow, or if you want to test your code in different scenarios that are difficult to reproduce with the remote dependency.

In this recipe, we’ll learn how to use Wiremock to mock the remote Football service in our Albums application during the testing execution.

Getting ready

In this recipe, we’ll create the tests for the application we built...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Discover practical recipes for real cloud-scale application challenges
  • Explore what Spring Boot offers to make your application production ready
  • Monitor applications, identify bottlenecks, and optimize performance
  • Purchase of the print or Kindle book includes a free PDF eBook

Description

In today's dynamic landscape, crafting robust and scalable Java web applications presents formidable challenges. Spring Boot emerges as the leading framework for web and microservices development, featuring a dynamic ecosystem and seamless integrations to address a spectrum of scenarios, from scaling apps on the cloud to deploying them to production. In this book, you’ll explore its streamlined, convention-over-configuration approach, simplifying application development. You’ll start by covering recipes showcasing Spring Boot's features. As you progress, you’ll understand how it helps streamline application development while staying ahead of technology trends. The book helps you grasp concepts effectively, explores basic REST APIs, shows you how to escalate to advanced scenarios, and tackle common cloud application challenges like security, scalability, performance optimization, and automated deployments. Dedicated sections are designed to help you stay ahead of the curve with recipes that delve into the latest trends such as containers, observability, native images, DevOps, test automation, and microservices, ensuring your applications align with evolving industry standards. By the end of this book, you’ll be able to build and automate the deployment of a scalable and high-performing distributed solution using Spring Boot 3.

Who is this book for?

This book is for Java developers who want to gain expertise in modern web development, architects designing complex systems, experienced Spring Boot developers and technology enthusiasts looking to stay up to date with the latest trends, and software engineers in need of practical solutions for everyday challenges. Hands-on experience with Java or Kotlin is required. Prior development experience on the cloud will be useful, but not necessary.

What you will learn

  • Develop production-grade distributed applications
  • Use various data repositories, including relational and NoSQL databases
  • Implement modern testing techniques across different levels of application development
  • Leveraging Testcontainers to validate all integration scenarios
  • Integrate with services like Redis, PostgreSQL, MongoDB, and RabbitMQ
  • Authenticate through OpenID providers
  • Facilitate smooth migration from earlier Spring Boot versions

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 12, 2024
Length: 426 pages
Edition : 1st
Language : English
ISBN-13 : 9781835084908
Category :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jul 12, 2024
Length: 426 pages
Edition : 1st
Language : English
ISBN-13 : 9781835084908
Category :

Packt Subscriptions

See our plans and pricing
Modal Close icon
R$50 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
R$500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts
R$800 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total R$ 724.97
Mastering Node.js Web Development
R$278.99
Mastering Spring Boot 3.0
R$222.99
Spring Boot 3.0 Cookbook
R$222.99
Total R$ 724.97 Stars icon
Banner background image

Table of Contents

15 Chapters
Part 1:Web Applications and Microservices Chevron down icon Chevron up icon
Chapter 1: Building RESTful APIs Chevron down icon Chevron up icon
Chapter 2: Securing Spring Boot Applications with OAuth2 Chevron down icon Chevron up icon
Chapter 3: Observability, Monitoring, and Application Management Chevron down icon Chevron up icon
Chapter 4: Spring Cloud Chevron down icon Chevron up icon
Part 2: Database Technologies Chevron down icon Chevron up icon
Chapter 5: Data Persistence and Relational Database Integration with Spring Data Chevron down icon Chevron up icon
Chapter 6: Data Persistence and NoSQL Database Integration with Spring Data Chevron down icon Chevron up icon
Part 3: Application Optimization Chevron down icon Chevron up icon
Chapter 7: Finding Bottlenecks and Optimizing Your Application Chevron down icon Chevron up icon
Chapter 8: Spring Reactive and Spring Cloud Stream Chevron down icon Chevron up icon
Part 4: Upgrading to Spring Boot 3 from Previous Versions Chevron down icon Chevron up icon
Chapter 9: Upgrading from Spring Boot 2.x to Spring Boot 3.0 Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.8
(5 Ratings)
5 star 80%
4 star 20%
3 star 0%
2 star 0%
1 star 0%
Ibidapo Abdulazeez Jul 12, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book is incredibly well-organised, making it easy to follow along and build upon each concept. Spring boot 3.0 cookbook provides numerous code snippets and detailed explanations, making complex topics accessible and understandable. The examples are not just theoretical but are applicable to real-world scenarios, which is a huge plus.
Amazon Verified review Amazon
MR ASADMR ZAHID Jul 25, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I reviewed this book at the request of the author and I'm sharing it here for others.The book offers a well rounded and comprehensive collection of practical recipes that cover a wide range of topics essential for modern web and microservices development using Spring Boot 3.0.Practical and Hands-On:The book excels in providing step-by-step instructions for building RESTful APIs, securing applications with OAuth2, and integrating with various databases. Each chapter is filled with real-world examples that are easy to follow and implement.Focus on Modern Practices:It emphasizes current best practices, including observability, monitoring, and application management. The sections on Spring Cloud and reactive programming are particularly useful for architects designing scalable and resilient systems.Comprehensive Coverage:From basic CRUD operations to advanced topics like distributed tracing and native image creation, the book covers a broad spectrum of Spring Boot features. This makes it a one-stop guide for both beginners and experienced developers.Clear and Concise:The book is well-organized content and makes complex concepts accessible. The inclusion of technical requirements and detailed explanations ensures that readers can easily replicate the examples. The recipes format is useful starting from ‘Getting Ready’ to ‘How to do it’ with a follow up overview in ‘How it works’It’s definitely a book which helps developers to get started and also experienced developers and architects to close gaps in knowledge and a fundamental working knowledge of Spring Boot 3.0 Cookbook.
Amazon Verified review Amazon
Erica Jul 25, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I actually found this book before it was even released. I was searching for books on Java and Spring when I came across "Spring Boot 3.0 Cookbook", which wouldn't be released for a couple more months. 😩 I was so excited to get my hands on it that I literally set a reminder in my phone to order it the day it was released on Amazon. 😅When it finally arrived, I jumped right into reading about automated testing, mocking services, and implementing security protocols like OAuth2. (Not my favorite topics, to be honest, but they're my weakest areas and I'm trying to get better at them so 🤷🏽‍♀️, here we are. 😮‍💨😅)The book emphasizes the importance of automated testing over manual testing due to its scalability and efficiency. It covers the basics of unit and integration testing using Spring Boot's built-in testing starter. For the longest time, I didn't know the difference between the different types of testing (they're all just testing to me 🤷🏽‍♀️🥴), so this part was pretty helpful. 😅It also covers how to mock remote dependencies using Wiremock. The book explains how to configure Wiremock and integrate it with Spring Boot for testing, which I found pretty helpful because even though I've definitely created mocks for testing before, I used MockMVC to do it, so Wiremock was completely new to me. 🤯The security section is really detailed and covers setting up an Authorization Server, protecting APIs with OAuth2, and configuring different scopes and client authentication methods. It explains handling various OAuth2 flows, such as client credentials and authorization code grant flows.I found this part helpful since I'm still pretty new to OAuth2 and have mostly used JWT up until now. 😕 (Speaking of which, it also explains how to use JWT tokens for secure communication and validation. 😉)The book also mentions integration with social providers like GitHub and Facebook and even walks you through integrating Google Account login into your Spring Boot applications. Now this is the part I was excited about!! 🤩😁 By configuring your Authorization Server as an OAuth2 client with Google as the Identity Provider (IdP), you can enable users to log in with their Gmail accounts.It also explains how to configure the security chain using Spring Security's 'SecurityConfig' class, detailing the setup of 'Security FilterChain' beans to handle various security checks and the login process. This part was definitely helpful for me because 'Security FilterChain' was one of the things that my bootcamp just completely glossed over. 😕 It was kinda like "Paste these snippets of code into such-and-such class to implement security", and that was it. 🫤🤷🏽‍♀️There's a chapter where the book teaches you to identify performance bottlenecks and optimize your application. Now this stuff was completely new to me. 😳 Thankfully, it guides you through the entire process, from identifying issues to applying solutions like caching and runtime tuning.It clearly explains the impact caching has on overall performance. By reducing the load on the database through caching, the application can handle more requests efficiently, demonstrating the real-world benefits of proper caching strategies.The book also talks about monitoring and application health and covers metrics like CPU usage, heap memory, etc. explaining the importance of diagnosing and fixing performance issues.Overall, I think this book is a great resource for Java developers and it's packed with clear explanations and detailed examples to help you develop secure RESTful APIs with Spring Boot. 😊 I literally waited months for this book to be released and I can honestly say that it exceeded my expectations!! 😁
Amazon Verified review Amazon
Jorge Deflon Jul 15, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Spring Boot has become the default framework for developing applications and services on the Java platform more quickly, which has given a new dynamism to this platform, along with the new functionalities of recent versions of Java.This book offers us several recipes to take advantage of this platform in an optimal way.Another good book that I add to my shelf on the Java platform with Spring.
Amazon Verified review Amazon
serene boyland Aug 30, 2024
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
This book is a must have for those looking to expand their knowledge of Springboot. This book is great for beginners or pros. Chapter 8 Reactive Spring is a fun read and very helpful sense I am new to this approach. Thanks for providing this awesome book, I'm looking foward to more great content from this Author/Authors.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.