Building RESTful Web Services with Spring 5

Building RESTful Web Services with Spring 5

English | MP4 | AVC 1920×1080 | AAC 48KHz 2ch | 1h 28m | 300 MB

Find out the implementation of REST architecture to build resilient software in Java with the help of the Spring 5.0 framework.

REST is an architectural style that tackles the challenges of building scalable web services. In today’s connected world, APIs have taken a central role on the web. APIs provide the fabric through which systems interact, and REST has become synonymous with APIs.

The depth, breadth, and ease of use of Spring makes it one of the most attractive frameworks in the Java ecosystem. Marrying the two technologies is, therefore, a very natural choice. This course takes you through the design of RESTful web services and leverages the Spring Framework to implement these services.

It also brings the power of the latest Spring 5.0 release, working with MVC built-in as well as the front end framework. It then goes beyond the use of Spring to explores approaches to tackle resilience, security, and scalability concerns. Finally, the course ends by taking you through building a Java client for your RESTful web service.

This course uses a module-based approach, viewers will be taken through a set of specific patterns and tested practices to build effective RESTful systems in Java using the Spring framework.

What You Will Learn

  • Get to know the difference between imperative and functional approaches.
  • Deep dive into the principles behind REST.
  • Expose CRUD operations through RESTful endpoints with the Spring Framework.
  • Devise response formats and error handling strategies, offering a consistent and flexible structure to simplify integration for service consumers.
  • Understand techniques to secure web services.
  • Optimize and scale web services using techniques such as caching and clustering.
Table of Contents

A Few Basics
1 The Course Overview
2 REST – A Basic Understanding
3 Imperative and Reactive programming

Building RESTful Web Services in Spring 5 with Maven
4 Apache Maven
5 Developing RESTful Web Services

Flux and Mono in Spring
6 Benefits of Reactive programming
7 User Class with Reactive – REST

CRUD Operations in Spring REST
8 Exploring File Structure – Initializer, Handler, and Repository
9 Working with getAllUsers Method
10 getUser – Operations and Implementation

CRUD Operations in Plain REST
11 Mapping CRUD Operations to HTTP Methods
12 CRUD Operation in Spring 5 (Without Reactive)

Building a REST Client and Spring Security
13 Building a REST Client and Error Handling
14 Spring Security