Cademy logoCademy Marketplace

Course Images

Master Microservices with Spring Boot and Spring Cloud

Master Microservices with Spring Boot and Spring Cloud

  • 30 Day Money Back Guarantee
  • Completion Certificate
  • 24/7 Technical Support

Highlights

  • On-Demand course

  • 19 hours 39 minutes

  • All levels

Description

Learn to build an amazing REST API with Spring Boot and understand what all this hype about microservices is about.

Developing RESTful web services and REST API is fun. The combination of Java, Spring Boot, Spring Web MVC, Spring Web Services, and JPA makes it even more fun. And it's even more fun to create microservices. In the first part of the course, you will learn the basics of RESTful web services developing resources for a social media application. You will learn to implement these resources with multiple features - versioning, exception handling, documentation (Swagger), basic authentication (Spring Security), filtering, and HATEOAS. You will learn the best practices in designing RESTful web services. In the second part of the course, you will learn the basics of microservices. You will understand how to implement microservices using Spring Cloud. In the third part of the course, you will learn the basics of Docker. You will understand how to build containers for microservices using Docker and Spring Cloud. In the fourth part of the course, you will learn the basics of Kubernetes. You will understand how to orchestrate microservices with Kubernetes. By the end of the course, you will learn to build an amazing REST API with Spring Boot, build microservices with Spring Boot and Spring Cloud, build containers with Docker, and finally, orchestrate microservices with Kubernetes. The code files and all resource files are uploaded on the GitHub repository at https://github.com/PacktPublishing/spring-microservices-v2

What You Will Learn

Develop and design RESTful web services with Spring Boot
Develop microservices with Spring Boot and Spring Cloud
Orchestrate microservices with Kubernetes
Create containers for microservices with Docker
Implement fault tolerance for microservices with Hystrix
Implement distributed tracing for microservices with Spring Cloud Sleuth and Zipkin

Audience

This course is for individuals at both beginner and experienced levels who want to learn how to design and develop RESTful web services with Spring Boot, and design and develop microservices with Spring Cloud. Apart from this, enthusiasts who want to learn to build containers for microservices with Docker and orchestrate microservices with Kubernetes.

The basic requirement for this course is the attitude to learn while having fun. This course is designed for students with zero experience with either of the technologies - Java, Spring Boot, Spring Cloud, Docker, and Kubernetes.

Approach

This course follows step-by-step with a hands-on approach throughout. The concepts are thoroughly explained and there is not a single line of code you type that is going unexplained. The author also uncovers the mistakes that students may make before the start of the project, which makes practical learning more fun.

Key Features

Learn from scratch, install Eclipse, and get up and running with all frameworks such as Maven and embedded Tomcat * Amazing hands-on step-by-step learning experiences * Real project experiences using the best tools and frameworks

Github Repo

https://github.com/PacktPublishing/spring-microservices-v2

About the Author

In28Minutes Official

Ranga Karanam is a seasoned technologist and architect with over two decades of expertise in programming, design, and architecture. He founded in28Minutes with the goal of helping students master cutting-edge cloud-native technologies such as AWS, Azure, Google Cloud, Docker, and Kubernetes. With 15 years of experience in Java programming and design, Ranga has collaborated with top banking clients worldwide. His passion for creating hands-on courses with real-world projects motivated him to develop the Step-By-Step series of courses that follow a problem-solution-based approach, with practical and real-world application examples. Ranga and his team at in28Minutes specialize in Java and related frameworks such as Spring, Spring Boot, Spring MVC, Struts, and Hibernate. They are committed to equipping learners with the skills and knowledge necessary to succeed in today's rapidly evolving technology landscape.

Course Outline

1. Introduction

1. Microservices and RESTful APIs with Spring Boot and Spring Cloud

This video provides an introduction to this course.

2. Introduction to the Course and Course Guide

This video provides guidance to extract the most out of it.

3. A Surprise! New Course Updates

This video shows what is added in the recent update.


2. Introduction to Web Services

1. What is a Web Service?

This video provides an idea about web services.

2. Important Questions Related to Web Services

This video explains some important questions related to the web services.

3. Web Services - Key Terminology

This video demonstrates the key terminology of web services.

4. Introduction to SOAP (Simple Object Access Protocol) Web Services

This video introduces you to the SOAP (Simple Object Access Protocol) web services.

5. Introduction to RESTful Web Services

This video provides an introduction to RESTful web services.

6. SOAP Versus RESTful Web Services

This video explains the difference between SOAP (Simple Object Access Protocol) and RESTful web services.


3. RESTful Web Services with Spring Boot

1. Section Introduction - RESTful Web Services with Spring Boot

This video provides an introduction to RESTful web services with Spring Boot.

2. Step 01 - Initializing a RESTful Services Project with Spring Boot

This video explains initializing a RESTful services project with Spring Boot.

3. Step 02 - Understanding the RESTful Services We will Create in this Course

This video helps you understand the RESTful services you would want to create in this course.

4. Step 03 - Creating a Hello World Service

This video explains how to create a Hello World service.

5. Step 04 - Enhancing the Hello World Service to Return a Bean

This video explains how to enhance the Hello World service to return a Bean.

6. Step 05 - Quick Review of Spring Boot Auto Configuration and Dispatcher Servlet

This video gives you a quick review of Spring Boot auto configuration and dispatcher servlet.

7. Step 06 - Enhancing the Hello World Service with a Path Variable

This video demonstrates how to enhance the Hello World service with a path variable.

8. Step 07 - Creating User Bean and User Service

This video shows how to create user bean and user service.

9. Step 08 - Implementing GET Methods for User Resource

This video shows implementing GET methods for user resource.

10. Step 09 - Implementing POST Method to Create User Resource

This video demonstrates implementing POST method to create user resource.

11. Step 10 - Enhancing POST Method to Return Correct HTTP Status Code and Location

This video explains enhancing POST method to return correct HTTP status code and location.

12. Step 11 - Implementing Exception Handling - 404 Resource Not Found

This video explains how to implement exception handling - 404 resource not found.

13. Step 12 - Implementing Generic Exception Handling for All Resources

This video explains the implementation of generic exception handling for all resources.

14. Step 13 - Exercise: User Post Resource and Exception Handling

This is an exercise video where you will work on the user post resource and exception handling.

15. Step 14 - Implementing DELETE Method to Delete a User Resource

This video explains the implementation of DELETE method to delete a user resource.

16. Step 15 - Implementing Validations for RESTful Services

This video explains the implementation of validations for RESTful services.

17. Step 16 - Implementing HATEOAS for RESTful Services

This video explains the implementation of HATEOAS for RESTful services.

18. Step 17 - Overview of Advanced RESTful Service Features

This video provides an overview of advanced RESTful service features.

19. Step 18 - Internationalization for RESTful Service

This video explains internationalization for RESTful Service.

20. Step 18 Part 2 - Internationalization for RESTful Services

This video explains continues with the implementation of internationalization for RESTful services.

21. Step 19 - Content Negotiation - Implementing Support for XML

This video explains the concepts of content negotiation - implementing support for XML.

22. Step 20 - Configuring Auto Generation of Swagger Documentation

This video explains the configuring auto generation of Swagger documentation.

23. Step 21 - Introduction to Swagger Documentation Format

This video provides an introduction to Swagger documentation format.

24. Step 22 - Enhancing Swagger Documentation with Custom Annotations

This video shows enhancing Swagger documentation with custom annotations.

25. Step 23 - Monitoring APIs with Spring Boot Actuator

This video explains monitoring APIs with Spring Boot actuator.

26. Step 24 - Implementing Static Filtering for RESTful Service

This video explains the implementation of static filtering for RESTful service.

27. Step 25 - Implementing Dynamic Filtering for RESTful Service

This video explains the implementation of dynamic filtering for RESTful service.

28. Step 26 - Versioning RESTful Services - Basic Approach with URIs

This video explains the versioning RESTful services - basic approach with URIs.

29. Step 27 - Versioning RESTful Services - Header and Content Negotiation Approach

This video explains the versioning RESTful services - header and content negotiation approach.

30. Step 28 - Implementing Basic Authentication with Spring Security

This video explains the implementation of basic authentication with Spring security.

31. Step 29 - Overview of Connecting RESTful Service to JPA

This video provides an overview of connecting RESTful service to JPA.

32. Step 30 - Creating User Entity and Some Test Data

This video shows how to create user entity and some test data.

33. Step 31 - Updating GET Methods on User Resource to Use JPA

This video demonstrates updating GET methods on user resource to use JPA.

34. Step 32 - Updating POST and DELETE Methods on User Resource to Use JPA

This video demonstrates updating POST and DELETE methods on user resource to use JPA.

35. Step 33 - Creating Post Entity and Many to One Relationship with User Entity

This video explains how to create post entity and many to one relationship with user entity.

36. Step 34 - Implementing a GET Service to Retrieve All Posts of a User

This video explains the implementation of a GET service to retrieve all posts of a user.

37. Step 35 - Implementing a POST Service to Create a Post for a User

This video explains the implementation of a POST service to create a post for a user.

38. Step 36 - Richardson Maturity Model

This video explains about Richardson maturity model.

39. Step 37 - RESTful Web Services - Best Practices

This video demonstrates the best practices of RESTful web services.


4. Quick Introduction to Microservices

1. Section Introduction - Microservices with Spring Cloud

This video provides an introduction to microservices with Spring Cloud.

2. Step 00 - 01 - Introduction to Microservices

This video provides an introduction to microservices.

3. Step 00 - 02 - Challenges with Microservices

This video explains what are the challenges with microservices.

4. Step 00 - 03 - Introduction to Spring Cloud

This video provides an introduction to Spring Cloud.

5. Step 00 - 04 - Advantages of Microservices Architectures

This video explains the advantages of microservices architectures.

6. Step 00 - 05 - Microservice Components - Standardizing Ports and URL

This video explains components of microservices, which are standardizing ports and URL.


5. Microservices with Spring Cloud - V1

1. Next Section Uses Latest Version of Spring Boot

This video provides basic information about what can be expected from this section and from the next section.

2. Step 01 - Part 1 - Introduction to Limits Microservice and Spring Cloud Config Server

This video provides an introduction to limits microservice and Spring Cloud configuration server.

3. Step 01 - Part 2 - Setting Up Limits Microservice

This video explains how to set up limits microservices.

4. Step 02 - Creating a Hard Coded Limits Service

This video explains how to create a hard coded limits services.

5. Step 03 - Enhance Limits Service to Get Configuration from Application Properties

This video shows how to enhance limits service to get configuration from application properties.

6. Step 04 - Setting Up Spring Cloud Config Server

This video explains setting up Spring Cloud config server.

7. Step 05 - Installing Git

This video demonstrates the installation of Git.

8. Step 06 - Creating Local Git Repository

This video focuses on creating local Git repository.

9. Step 07 - Connect Spring Cloud Config Server to Local Git Repository

This video explains how to connect Spring Cloud config server to local Git repository.

10. Step 08 - Configuration for Multiple Environments in Git Repository

This video explains configuration for multiple environments in Git repository.

11. Step 09 - Connect Limits Service to Spring Cloud Config Server

This video explains how to connect limits service to Spring Cloud config server.

12. Step 10 - Configuring Profiles for Limits Service

This video explains how to configure profiles for limits service.

13. Step 11 - A Review of Spring Cloud Config Server

This video provides a review of Spring Cloud config server.

14. Step 12 - Introduction to Currency Conversion and Currency Exchange Microservice

This video provides an introduction to currency conversion and currency exchange microservice.

15. Step 13 - Setting Up Currency Exchange Microservice

This video demonstrates the setting up of currency exchange microservice.

16. Step 14 - Create a Simple Hard Coded Currency Exchange Service

This video helps you create a simple hard coded currency exchange service.

17. Step 15 - Setting Up Dynamic Port in the Response

This video helps you with setting up dynamic port in the response.

18. Step 16 - Configure JPA and Initialized Data

This video explains how to configure JPA and initialized data.

19. Step 17 - Create a JPA Repository

This video shows how to create a JPA repository.

20. Step 18 - Setting Up Currency Conversion Microservice

This video explains how to set up currency conversion microservice.

21. Step 19 - Creating a Service for Currency Conversion

This video explains how to create a service for currency conversion.

22. Step 20 - Invoking Currency Exchange Microservice from Currency Conversion Micro

This video is about invoking currency exchange microservice from currency conversion micro.

23. Step 21 - Using Feign REST Client for Service Invocation

This video focuses on using Feign REST client for service invocation.

24. Step 22 - Setting Up Client-Side Load Balancing with Ribbon

This video demonstrates setting up client-side load balancing with Ribbon.

25. Step 23 - Running Client-Side Load Balancing with Ribbon

This video focuses on running client-side load balancing with Ribbon.

26. Step 24 - Understand the Need for a Naming Server

This video helps you understand the need for a naming server.

27. Step 25 - Setting Up Eureka Naming Server

This video explains setting up Eureka naming server.

28. Step 26 - Connecting Currency Conversion Microservice to Eureka

This video demonstrates connecting currency conversion microservice to Eureka.

29. Step 27 - Connecting Currency Exchange Microservice to Eureka

This video explains connecting currency exchange microservice to Eureka.

30. Step 28 - Distributing Calls Using Eureka and Ribbon

This video focuses on distributing calls using Eureka and Ribbon.

31. Step 29 - A Review of Implementing Eureka, Ribbon, and Feign

This video provides a review of implementing Eureka, Ribbon, and Feign.

32. Step 30 - Introduction to API Gateways

This video provides an introduction to API gateways.

33. Step 31 - Setting Up Zuul API Gateway

This video explains the setting up Zuul API Gateway.

34. Step 32 - Implementing Zuul Logging Filter

This video is about implementing Zuul logging filter.

35. Step 33 - Executing a Request through Zuul API Gateway

This video is about executing a request through Zuul API gateway.

36. Step 34 - Setting Up Zuul API Gateway Between Microservice Invocations

This video shows how to set up Zuul API gateway between microservice invocations.

37. Step 35 - Introduction to Distributed Tracing

This video proves an introduction to distributed tracing.

38. Step 36 - Implementing Spring Cloud Sleuth

This video explains how to implement Spring Cloud Sleuth.

39. Step 37 - Introduction to Distributed Tracing with Zipkin

This video provides an introduction to distributed tracing with Zipkin.

40. Step 38 - Installing Rabbit MQ

This video focuses on installing Rabbit MQ.

41. Step 39 - Setting Up Distributed Tracing with Zipkin

This video demonstrates setting up distributed tracing with Zipkin.

42. Step 40 - Connecting Microservices to Zipkin

This video is about connecting microservices to Zipkin.

43. Step 41 - Using Zipkin UI Dashboard to Trace Requests

This video explains how to use Zipkin UI Dashboard to trace requests.

44. Step 42 - Understanding the Need for Spring Cloud Bus

This video helps us understand the need for Spring Cloud Bus.

45. Step 43 - Implementing Spring Cloud Bus

This video explains the implementation of Spring Cloud Bus.

46. Step 44 - Fault Tolerance with Hystrix

This video explains the fault tolerance with Hystrix.


6. Microservices with Spring Cloud - V2

1. What's NEW in V2?

This video talks about what's new in V2.

2. Have You Already Completed V1?

This video talks about the previous section.

3. Step 01 - Setting Up Limits Microservice - V2

This video explains how to set up limits microservices.

4. Step 02 - Creating a Hard Coded Limits Service - V2

This video talks about creating a hard coded limits service.

5. Step 03 - Enhance Limits Service - Get Configuration from Application Props - V2

This video focuses on how to enhance limits service - get configuration from application props.

6. Step 04 - Setting Up Spring Cloud Config Server - V2

This video shows the setting up of Spring Cloud config server.

7. Step 05 - Installing Git and Creating Local Git Repository - V2

This video explains the installing Git and creating local Git repository.

8. Step 06 - Connect Spring Cloud Config Server to Local Git Repository - V2

This video explains how to connect Spring Cloud config server to local Git repository.

9. Step 07 - Connect Limits Service to Spring Cloud Config Server - V2

This video explains how to connect limits service to Spring Cloud config server.

10. Step 08 - Configuring Profiles for Limits Service - V2

This video focuses on configuring profiles for limits service.

11. Step 09 - Introduction to Currency Conversion and Exchange Microservices - V2

This video provides an introduction to currency conversion and exchange microservices.

12. Step 10 - Setting Up Currency Exchange Microservice - V2

This video explains about setting up currency exchange microservice.

13. Step 11 - Create a Simple Hard Coded Currency Exchange Service - V2

This video explains how to create a simple hard coded currency exchange service.

14. Step 12 - Setting Up Dynamic Port in the Response - V2

This video shows setting up of dynamic port in the response.

15. Step 13 - Configure JPA and Initialized Data - V2

This video helps us configure JPA and initialized data.

16. Step 14 - Create a JPA Repository - V2

This video explains how to create a JPA repository.

17. Step 15 - Setting Up Currency Conversion Microservice - V2

This video explains setting up currency conversion microservice.

18. Step 16 - Creating a Service for Currency Conversion - V2

This video explains creating a service for currency conversion.

19. Step 17 - Invoking Currency Exchange from Currency Conversion Microservice - V2

This video explains invoking currency exchange from currency conversion microservice.

20. Step 18 - Using Feign REST Client for Service Invocation - V2

This video focuses on using Feign REST client for service invocation.

21. Step 19 - Understand Naming Server and Setting Up Eureka Naming Server - V2

This video helps us understand naming server and setting up Eureka naming server.

22. Step 20 - Connect Currency Conversion and Currency Exchange Microservices - V2

This video explains how to connect currency conversion and currency exchange microservices.

23. Step 21 - QuickStart by Importing Microservices

This video shows how to QuickStart by importing microservices.

24. Step 22 - Load Balancing with Eureka, Feign, and Spring Cloud LoadBalancer - V2

This video demonstrates load balancing with Eureka, Feign, and Spring Cloud LoadBalancer.

25. Step 22 - Setting Up Spring Cloud API Gateway

This video explains setting up Spring Cloud API gateway.

26. Step 23 - Enabling Discovery Locator with Eureka for Spring Cloud Gateway

This video explains enabling discovery locator with Eureka for Spring Cloud gateway.

27. Step 24 - Exploring Routes with Spring Cloud Gateway

This video helps in exploring routes with Spring Cloud gateway.

28. Step 25 - Implementing spring Cloud Gateway Logging Filter

This video demonstrates implementing Spring Cloud Gateway Logging Filter.

29. Step 26 - Getting Started with Circuit Breaker - Resilience4j

This video helps you get started with Circuit Breaker - Resilience4j.

30. Step 27 - Playing with Resilience4j - Retry and Fallback Methods

This video resolves around playing with Resilience4j - retry and fallback methods.

31. Step 28 - Playing with Circuit Breaker Features of Resilience4j

This video is about playing with Circuit Breaker features of Resilience4j.

32. Step 29 - Exploring Rate Limiting and BulkHead Features of Resilience4j - V2

This video is about exploring rate limiting and BulkHead features of Resilience4j.

33. Debugging Guide for Microservices V2 + Docker + Docker Compose

This video is debugging guide for microservices V2 + Docker + Docker Compose.


7. Docker with Microservices Using Spring Boot and Spring Cloud - V2

1. Step 00 - Match Made in Heaven - Docker and Microservices

This video provides an introduction to Docker and microservices.

2. Step 01 - Installing Docker

This video shows installing Docker.

3. Step 02 - Your First Docker Usecase - Deploy a Spring Boot Application

This video focuses on your first Docker usecase - deploy a Spring Boot application.

4. Step 03 - Docker Concepts - Registry, Repository, Tag, Image, and Containers

This video talks about Docker concepts - registry, repository, tag, image, and containers.

5. Step 04 - Playing with Docker Images and Containers

This video is about playing with Docker images and containers.

6. Step 05 - Understanding Docker Architecture - Docker Client, Docker Engine

This video is about understanding Docker architecture - Docker Client, Docker Engine.

7. Step 06 - Why is Docker Popular?

This video lets you know why Docker is popular.

8. Step 07 - Playing with Docker Images

This video is about playing with Docker images.

9. Step 08 - Playing with Docker Containers

This video is about playing with Docker containers.

10. Step 09 - Playing with Docker Commands - stats, system

This video is about playing with Docker commands - stats, system.

11. Step 10 - Introduction to Distributed Tracing

This video provides an introduction to distributed tracing.

12. Step 11 - Launching Zipkin Container Using Docker

This video explains how to launch Zipkin container using Docker.

13. Step 12 - Connecting Currency Exchange Microservice with Zipkin

This video is about connecting currency exchange microservice with Zipkin.

14. Step 13 - Connecting Currency Conversion Microservice and API Gateway with Zipkin

This video focusses on connecting currency conversion microservice and API gateway with Zipkin.

15. Step 14 - Getting Setup with Microservices for Creating Container Images

This video is about getting setup with microservices for creating container images.

16. Step 15 - Creating Container Image for Currency Exchange Microservice

This video is about creating container image for currency exchange microservice.

17. Step 16 - Getting Started with Docker Compose - Currency Exchange Microservice

This video helps you get started with Docker Compose - currency exchange microservice.

18. Step 17 - Running Eureka Naming Server with Docker Compose

This video is about running Eureka naming server with Docker Compose.

19. Step 18 - Running Currency Conversion Microservice with Docker Compose

This video is about running currency conversion microservice with Docker Compose.

20. Step 19 - Running Spring Cloud API Gateway with Docker Compose

This video focuses on running Spring Cloud API gateway with Docker Compose.

21. Step 20 - Running Zipkin with Docker Compose

This video focuses on running Zipkin with Docker Compose.

22. Step 21 - Running Zipkin and RabbitMQ with Docker Compose

This video is about running Zipkin and RabbitMQ with Docker Compose.


8. Kubernetes with Microservices using Docker, Spring Boot, and Spring Cloud - V2

1. Step 00 - Docker, Kubernetes, and Microservices - Made for Each Other

This video provides an introduction to Docker, Kubernetes, and Microservices.

2. Step 01 - Getting Started with Docker, Kubernetes, and Google Kubernetes Engine

This video will help you get started with Docker, Kubernetes, and Google Kubernetes Engine.

3. Step 02 - Creating Google Cloud Account

In this video, you will be creating Google Cloud account.

4. Step 03 - Creating Kubernetes Cluster with Google Kubernete Engine (GKE)

This video focuses on creating Kubernetes Cluster with Google Kubernete Engine (GKE).

5. Step 04 - Review Kubernetes Cluster and Learn Few Fun Facts about Kubernetes

This video is about basics of Kubernetes Cluster and learning few fun facts about Kubernetes.

6. Step 05 - Deploy Your First Spring Boot Application to Kubernetes Cluster

This video helps you deploy your first Spring Boot application to Kubernetes Cluster.

7. Step 06 - Quick Look at Kubernetes Concepts - Pods, Replica Sets, and Deployment

This video helps you take a quick look at Kubernetes concepts - pods, replica sets, and deployment.

8. Step 07 - Understanding Pods in Kubernetes

This video helps you understand pods in Kubernetes.

9. Step 08 - Understanding Replica Sets in Kubernetes

In this video, you will be understanding replica sets in Kubernetes.

10. Step 09 - Understanding Deployment in Kubernetes

In this video, you will understand deployment in Kubernetes.

11. Step 10 - Quick Review of Kubernetes Concepts - Pods, Replica Sets, and Deployments

In this video, you will get a quick review of Kubernetes concepts - pods, replica sets, and deployments.

12. Step 11 - Understanding Services in Kubernetes

This video explains services in Kubernetes.

13. Step 12 - Quick Review of GKE on Google Cloud Console

In this video, you will take a quick review of GKE on Google Cloud Console.

14. Installing Gcloud

In this video, you will be installing Gcloud.

15. Installing Kubectl

In this video, you will be installing Kubectl.

16. Step 13 - Understanding Kubernetes Architecture - Master Node and Nodes

In this video, you will be understanding Kubernetes architecture - master node and nodes.

17. Step 14 - Set Up Currency Exchange and Conversion Microservices - Kubernetes

In this video, you will set up currency exchange and conversion microservices - Kubernetes.

18. Step 15 - Container Images for Exchange and Currency Conversion Microservices

This video explains container images for exchange and currency conversion microservices.

19. Step 16 - Deploy Microservices to Kubernetes and Understand Service Discovery

This video explains how to deploy microservices to Kubernetes and understand service discovery.

20. Step 17 - Creating Declarative Configuration Kubernetes YAML for Microservices

This video helps you create declarative configuration Kubernetes YAML for microservices.

21. Step 18 - Clean Up Kubernetes YAML for Microservices

This video explains how to clean up Kubernetes YAML for microservices.

22. Step 19 - Enable Logging and Tracing APIs in Google Cloud Platform

This video explains how to enable logging and tracing APIs in Google Cloud platform.

23. Step 20 - Deploying Microservices Using Kubernetes YAML Configuration

This video explains deploying microservices using Kubernetes YAML configuration.

24. Step 21 - Playing with Kubernetes Declarative YAML Configuration

This video is about playing around with Kubernetes declarative YAML Configuration .

25. Step 22 - Creating Environment Variables to Enable Microservice Communication

In this video, you will be creating environment variables to enable microservice communication.

26. Step 23 - Understanding Centralized Configuration in Kubernetes - Config Maps

In this video, you will be understanding centralized configuration in Kubernetes - Config Maps.

27. Step 24 - Exploring Centralized Logging and Monitoring in GKE

In this video, you will look at exploring centralized logging and monitoring in GKE.

28. Step 25 - Exploring Microservices Deployments with Kubernetes

This video explores microservices deployments with Kubernetes.

29. Step 26 - Configuring Liveness and Readiness Probes for Microservices with K8S

This video helps configure liveness and readiness probes for microservices with K8S.

30. Step 27 - Autoscaling Microservices with Kubernetes

This video focuses on autoscaling microservices with Kubernetes.

31. Step 28 - Delete Kubernetes Cluster and Thank You!

This video explains how to delete Kubernetes Cluster.


9. Appendix - Introduction to Spring Boot in 10 Steps

1. 0005 - Section Introduction 04 - Introduction to Spring Boot in 10 Steps

This video provides an introduction to the section.

2. Step 1 - Introduction to Spring Boot - Goals and Important Features

This video provides an introduction to Spring Boot.

3. Step 2 - Developing Spring Applications Before Spring Boot

This video explains how develop Spring applications before Spring Boot.

4. Step 3 - Using Spring Initializr to Create a Project

This video demonstrates creating a project using Spring Initializr.

5. Step 4 - Creating a Simple REST Controller

This video explains creating a simple REST controller.

6. Step 5 - What is Spring Boot Auto Configuration?

This video explains about Spring Boot auto configuration.

7. Step 6 - Spring Boot Versus Spring Versus Spring MVC

This video explains the difference between Spring Boot and Spring and Spring MVC.

8. Step 7 - Spring Boot Starter Projects - Starter Web and Starter JPA

This video focuses on Spring Boot starter projects - starter web and starter JPA.

9. Step 8 - Overview of Different Spring Boot Starter Projects

This video provides an overview of different Spring Boot starter projects.

10. Step 9 - Spring Boot Actuator

This video explains about the Spring Boot actuator.

11. Step 10 - Spring Boot Developer Tools

This video explains about the Spring Boot developer tools.


10. Appendix - Introduction to JPA in 10 Steps

1. Section Introduction - Introduction to JPA in 10 Steps

This video provides an introduction to this section.

2. Step 1 - Object Relational Impedance Mismatch

This video explains about object relational impedance mismatch.

3. Step 2 - World Before JPA - JDBC, Spring JDBC, and myBatis

This video explains different options available before JPA.

4. Step 3 - Introduction to JPA

This video provides an introduction to JPA.

5. Step 4 - Creating a JPA Project Using Spring Initializr

In this video, you will be creating a JPA project using Spring Initializr.

6. Step 5 - Defining a JPA Entity - User

This video is about defining a JPA entity - user.

7. Step 6 - Defining a Service to Manage the Entity - UserService and EntityManager

This video is about defining a service to manage the entity - UserService and EntityManager.

8. Step 7 - Using a Command Line Runner to Save the User to Database

This video is about using a command line runner to save the user to database.

9. Step 8 - Magic of Spring Boot and In Memory Database H2

This video helps you understand the magic of Spring Boot and in memory database H2.

10. Step 9 - Introduction to Spring Data JPA

This video provides an introduction to Spring Data JPA.

11. Step 10 - More JPA Repository: findById and findAll

This video shows you learn more about JPA repository: findById and findAll.

Course Content

  1. Master Microservices with Spring Boot and Spring Cloud

About The Provider

Packt
Packt
Birmingham
Founded in 2004 in Birmingham, UK, Packt’s mission is to help the world put software to work in new ways, through the delivery of effective learning and i...
Read more about Packt

Tags

Reviews