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

Arrow left icon
Profile Icon Felip Miguel Puig
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.8 (5 Ratings)
Paperback Jul 2024 426 pages 1st Edition
eBook
€8.99 €23.99
Paperback
€29.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Felip Miguel Puig
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.8 (5 Ratings)
Paperback Jul 2024 426 pages 1st Edition
eBook
€8.99 €23.99
Paperback
€29.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€8.99 €23.99
Paperback
€29.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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 : 9781835089491
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

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

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 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
€189.99 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 €5 each
Feature tick icon Exclusive print discounts
€264.99 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 €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 97.97
Mastering Node.js Web Development
€37.99
Mastering Spring Boot 3.0
€29.99
Spring Boot 3.0 Cookbook
€29.99
Total 97.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

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.