4.46 sur 5
4.46

Maitriser Microservices avec Spring Boot et Spring Cloud

Passer des services Web Restful (API REST) aux microservices - Java, Spring Boot, Spring Cloud, Docker et Kubernetes
Instructeur :
Mahefa Abel
English En savoir plus
Développer et concevoir des services Web RESTful avec Spring Boot
Développer des MICROSERVICES avec Spring Boot et Spring Cloud
Orchestrer les microservices avec KUBERNETES
Créer des conteneurs pour les microservices avec DOCKER
IMPLEMENTER la gestion des exceptions, la validation, HATEOAS et le filtrage pour les services Web RESTful.
Implémenter l'équilibrage de charge côté client (Ribbon), la mise à l'échelle dynamique (Eureka Naming Server) et une passerelle API (Zuul)
Vous allez configurer la configuration centralisée des microservices avec Spring Cloud Config Server
Vous apprendrez à implémenter le traçage distribué pour les microservices avec Spring Cloud Sleuth et Zipkin
Vous implémenterez la tolérance aux pannes pour les microservices avec Hystrix
Vous comprendrez comment versionner vos Web Services RESTful
Vous comprendrez comment surveiller les services RESTful avec Spring Boot Actuator
Vous comprendrez comment documenter les services Web RESTful avec Swagger
Vous comprendrez les meilleures pratiques en matière de conception de services Web RESTful
Utiliser Spring Cloud Bus pour échanger des messages sur les mises à jour de configuration
Simplifiez la communication avec d'autres microservices à l'aide de Feign REST Client

Do you want to Learn to Build an Amazing REST API with Spring Boot? Do you want to learn what the Hype about Microservices is all about? Do you want to Build Microservices with Spring Boot and Spring Cloud? Do you want to Build Containers with Docker? Do you want to orchestrate Microservices with Kubernetes? Look no Further!

 

UPDATE 2021 JAN: New Sections on DOCKER and KUBERNETES.

 

WHAT OUR LEARNERS ARE SAYING:

5 STARS – Anyone willing to learn Spring Cloud API’s and Spring Rest must enroll for the course without second-thoughts.

5 STARS – Probably I can say this is best tutorial for Spring boot as well as Micro Service for the learners who have just started there work/projects on these technologies.

5 STARS – This was an excellent course! The instructor provided great examples that were straight-forward and easy to understand….. I would highly recommend his courses if you want to solid introduction to spring boot and the spring framework.

5 STARS – Very helpful for the beginners as well as experienced people to gain knowledge on Restful Web-services and Spring boot. Thank you for such a nice tutorial.

5 STARS – This was perfect course to get introduced to the world of microservices. Instructor explained each topic by first listing the problems that the particular solution is going to solve.

5 STARS – Great course, the teacher explains everything in a good way making good examples that makes easy to understand how this knowledge can be use in real project. All the courses of in28minutes are great, i’m waiting for the next great course.

5 STARS – The instructor’s has a unique style of teaching which is very uncomplicated , up-to-the point and very effective. Great job!

5 STARS – This one is the most awesome course that I have ever purchased in udemy!

 

COURSE OVERVIEW:

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 its even more fun to create Microservices.

There are two parts to this course – RESTful web services and Microservices

Architectures are moving towards microservices. RESTful web services are the first step to developing great microservices. Java and Spring Boot, in combination with Spring Web MVC (also called Spring REST) makes it easy to develop RESTful web services.

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 this part of the course, you will be using Spring (Dependency Management), Spring MVC (or Spring REST), Spring Boot, Spring Security (Authentication and Authorization), Spring Boot Actuator (Monitoring), Swagger (Documentation), Maven (dependencies management), Eclipse (IDE), Postman (REST Services Client) and Tomcat Embedded Web Server. We will help you set up each one of these.

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 this part of the course, you will learn to establish communication between microservices, enable load balancing, scaling up and down of microservices. You will also learn to centralize the configuration of microservices with Spring Cloud Config Server. You will implement Eureka Naming Server and Distributed tracing with Spring Cloud Sleuth and Zipkin. You will create fault tolerant microservices with Zipkin.

In the third part of the course, you will learn the basics of Docker. You will understand how to build containers for microservices built 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.

WHAT TO EXPECT FROM EVERY IN28MINUTES COURSE

in28Minutes offers 30 Best Selling Courses providing Amazing Learning Experiences to 500,000 Learners across the world.

Each of these courses come with

  • Amazing Hands-on Step By Step Learning Experiences
  • Real Project Experiences using the Best Tools and Frameworks
  • Awesome Troubleshooting Guides with 200+ FAQs Answered
  • Friendly Support in the Q&A section
  • Free Udemy Certificate of Completion on Completion of Course

 

HERE ARE A FEW REVIEWS ON THE IN28MINUTES WAY

5 STARS – Excellent, fabulous. The way he has prepared the material and the way he teaches is really awesome. What an effort .. Thanks a million

5 STARS – A lot of preparation work has taken place from the teacher and this is visible throughout the course.

5 STARS – This guy is fantastic. Really. Wonderful teaching skills, and goes well out of his way to make sure that everything he is doing is fully understood. This is the kind of tutorial that gets me excited to work with a framework that I may otherwise not be.

5 STARS – The best part of it is the hands-on approach which the author maintained throughout the course as he had promised at the beginning of the lecture. He explains the concepts really well and also makes sure that there is not a single line of code you type without understanding what it really does.

5 STARS – I also appreciate the mind and hands approach of teaching something and then having the student apply it. It makes everything a lot clearer for the student and uncovers issues that we will face in our project early.

5 STARS – Amazing course. Explained super difficult concepts (that I have spent hours on the internet finding a good explanation) in under 5 minutes.

Start Learning Now. Hit the Enroll Button!

 

STEP BY STEP DETAILS

RESTful Web Services 

  • Step 01 – Initializing a RESTful Services Project with Spring Boot
  • Step 02 – Understanding the RESTful Services we would create in this course
  • Step 03 – Creating a Hello World Service
  • Step 04 – Enhancing the Hello World Service to return a Bean
  • Step 05 – Quick Review of Spring Boot Auto Configuration and Dispatcher Servlet – What’s happening in the background?
  • Step 06 – Enhancing the Hello World Service with a Path Variable
  • Step 07 – Creating User Bean and User Service
  • Step 08 – Implementing GET Methods for User Resource
  • Step 09 – Implementing POST Method to create User Resource
  • Step 10 – Enhancing POST Method to return correct HTTP Status Code and Location URI
  • Step 11 – Implementing Exception Handling – 404 Resource Not Found
  • Step 12 – Implementing Generic Exception Handling for all Resources
  • Step 13 – Exercise : User Post Resource and Exception Handling
  • Step 14 – Implementing DELETE Method to delete a User Resource
  • Step 15 – Implementing Validations for RESTful Services
  • Step 16 – Implementing HATEOAS for RESTful Services
  • Step 17 – Overview of Advanced RESTful Service Features
  • Step 18 – Internationalization for RESTful Services
  • Step 19 – Content Negotiation – Implementing Support for XML
  • Step 20 – Configuring Auto Generation of Swagger Documentation
  • Step 21 – Introduction to Swagger Documentation Format
  • Step 22 – Enhancing Swagger Documentation with Custom Annotations
  • Step 23 – Monitoring APIs with Spring Boot Actuator
  • Step 24 – Implementing Static Filtering for RESTful Service
  • Step 25 – Implementing Dynamic Filtering for RESTful Service
  • Step 26 – Versioning RESTful Services – Basic Approach with URIs
  • Step 27 – Versioning RESTful Services – Header and Content Negotiation Approaches
  • Step 28 – Implementing Basic Authentication with Spring Security
  • Step 29 – Overview of Connecting RESTful Service to JPA
  • Step 30 – Creating User Entity and some test data
  • Step 31 – Updating GET methods on User Resource to use JPA
  • Step 32 – Updating POST and DELETE methods on User Resource to use JPA
  • Step 33 – Creating Post Entity and Many to One Relationship with User Entity
  • Step 34 – Implementing a GET service to retrieve all Posts of a User
  • Step 35 – Implementing a POST service to create a Post for a User
  • Step 36 – Richardson Maturity Model
  • Step 37 – RESTful Services Best Practices

Microservices with Spring Cloud

  • Step 01 – Part 1 – Introduction to Limits Microservice and Spring Cloud Config Server
  • Step 01 – Part 2 – Setting up Limits Microservice
  • Step 02 – Creating a hard coded limits service
  • Step 03 – Enhance limits service to pick up configuration from application properties
  • Step 04 – Setting up Spring Cloud Config Server
  • Step 05 – Installing Git
  • Step 06 – Creating Local Git Repository
  • Step 07 – Connect Spring Cloud Config Server to Local Git Repository
  • Step 08 – Configuration for Multiple Environments in Git Repository
  • Step 09 – Connect Limits Service to Spring Cloud Config Server
  • Step 10 – Configuring Profiles for Limits Service
  • Step 11 – A review of Spring Cloud Config Server
  • Step 12 – Introduction to Currency Conversion and Currency Exchange Microservices
  • Step 13 – Setting up Currency Exchange Microservice
  • Step 14 – Create a simple hard coded currency exchange service
  • Step 15 – Setting up Dynamic Port in the the Response
  • Step 16 – Configure JPA and Initialized Data
  • Step 17 – Create a JPA Repository
  • Step 18 – Setting up Currency Conversion Microservice
  • Step 19 – Creating a service for currency conversion
  • Step 20 – Invoking Currency Exchange Microservice from Currency Conversion Microservice
  • Step 21 – Using Feign REST Client for Service Invocation
  • Step 22 – Setting up client side load balancing with Ribbon
  • Step 23 – Running client side load balancing with Ribbon
  • Step 24 – Understand the need for a Naming Server
  • Step 25 – Setting up Eureka Naming Server
  • Step 26 – Connecting Currency Conversion Microservice to Eureka
  • Step 27 – Connecting Currency Exchange Microservice to Eureka
  • Step 28 – Distributing calls using Eureka and Ribbon
  • Step 29 – A review of implementing Eureka, Ribbon and Feign
  • Step 30 – Introduction to API Gateways
  • Step 31 – Setting up Zuul API Gateway
  • Step 32 – Implementing Zuul Logging Filter
  • Step 33 – Executing a request through Zuul API Gateway
  • Step 34 – Setting up Zuul API Gateway between microservice invocations
  • Step 35 – Introduction to Distributed Tracing
  • Step 36 – Implementing Spring Cloud Sleuth
  • Step 37 – Introduction to Distributed Tracing with Zipkin
  • Step 38 – Installing Rabbit MQ
  • Step 39 – Setting up Distributed Tracing with Zipkin
  • Step 40 – Connecting microservices to Zipkin
  • Step 41 – Using Zipkin UI Dashboard to trace requests
  • Step 42 – Understanding the need for Spring Cloud Bus
  • Step 43 – Implementing Spring Cloud Bus
  • Step 44 – Fault Tolerance with Hystrix

Start Learning Now. Hit the Enroll Button!

Introduction

1
Microservices and RESTful APIs with Spring Boot and Spring Cloud - Preview
2
Congratulations
3
Introduction to the Course & Course Guide
4
A surprise! New Course Updates

Introduction To Web Services

1
What is a Web Service?
2
Important How Questions related to Web Services
3
Web Services - Key Terminology
4
Introduction to SOAP Web Services
5
Introduction to RESTful Web Services
6
SOAP vs RESTful Web Services

Restful Web Services with Spring Boot

1
Section Introduction - RESTful Web Services with Spring Boot
2
Step 01 - Initializing a RESTful Services Project with Spring Boot
3
Fastest Approach to Solve All Your Exceptions
4
Step 02 - Understanding the RESTful Services we would create in this course
5
Step 03 - Creating a Hello World Service
6
Step 04 - Enhancing the Hello World Service to return a Bean
7
Step 05 - Quick Review of Spring Boot Auto Configuration and Dispatcher Servlet
8
Step 06 - Enhancing the Hello World Service with a Path Variable
9
Step 07 - Creating User Bean and User Service
10
Step 08 - Implementing GET Methods for User Resource
11
Step 09 - Implementing POST Method to create User Resource
12
CODE BACKUP FILE : For Reference
13
Step 10 - Enhancing POST Method to return correct HTTP Status Code and Location
14
Step 11 - Implementing Exception Handling - 404 Resource Not Found
15
Step 12 - Implementing Generic Exception Handling for all Resources
16
Step 13 - Exercise : User Post Resource and Exception Handling
17
Step 14 - Implementing DELETE Method to delete a User Resource
18
Step 15 00 - Adding dependency for validation
19
Step 15 - Implementing Validations for RESTful Services
20
Step 16 - Implementing HATEOAS for RESTful Services
21
Step 17 - Overview of Advanced RESTful Service Features
22
Step 18 - Internationalization for RESTful Services
23
Step 19 - Content Negotiation - Implementing Support for XML
24
Step 20 - Configuring Auto Generation of Swagger Documentation
25
Step 21 - Introduction to Swagger Documentation Format
26
Step 22 - Monitoring APIs with Spring Boot Actuator
27
Step 23 - Visualizing APIs with HAL Explorer
28
Step 24 - Implementing Static Filtering for RESTful Service
29
Step 25 - Implementing Dynamic Filtering for RESTful Service
30
Step 26 - Versioning RESTful Services - Basic Approach with URIs
31
Step 27 - Versioning RESTful Services - Header and Content Negotiation Approach
32
Step 28 - Implementing Basic Authentication with Spring Security
33
Step 29 - Overview of Connecting RESTful Service to JPA
34
COURSE UPDATE : H2 Database URL & Data.sql
35
Step 30 - Creating User Entity and some test data
36
Step 31 - Updating GET methods on User Resource to use JPA
37
Step 32 - Updating POST and DELETE methods on User Resource to use JPA
38
Step 33 - Creating Post Entity and Many to One Relationship with User Entity
39
Step 34 - Implementing a GET service to retrieve all Posts of a User
40
Step 35 - Implementing a POST service to create a Post for a User
41
Step 36 - Richardson Maturity Model
42
Step 37 - RESTful Web Services - Best Practices

Quick Introduction to Microservices

1
Section Introduction - Microservices with Spring Cloud
2
Step 00 - 01 - Introduction to Microservices
3
Step 00 - 02 - Challenges with Microservices
4
Step 00 - 03 - Introduction to Spring Cloud
5
Step 00 - 04 - Advantages of Microservices Architectures
6
Step 00 - 05 - Microservice Components - Standardizing Ports and URL

Microservices with Spring Cloud - V1

1
Next Section uses Latest Version of Spring Boot
2
Step 01 - Part 1 - Intro to Limits Microservice and Spring Cloud Config Server
3
Step 01 - Part 2 - Setting up Limits Microservice
4
Step 02 - Creating a hard coded limits service
5
Step 03 -Enhance limits service to get configuration from application properties
6
Step 04 - Setting up Spring Cloud Config Server
7
Step 05 - Installing Git
8
Step 06 - Creating Local Git Repository
9
Step 07 - Connect Spring Cloud Config Server to Local Git Repository
10
Step 08 - Configuration for Multiple Environments in Git Repository
11
COURSE UPDATE : Limits service with >=2.4.0 of SPRING BOOT
12
Step 09 - Connect Limits Service to Spring Cloud Config Server
13
Debugging problems with Spring Cloud Config Server
14
Step 10 - Configuring Profiles for Limits Service
15
Step 11 - A review of Spring Cloud Config Server
16
Step 12 - Introduction to Currency Conversion and Currency Exchange Microservice
17
IMPORTANT : SPRING BOOT AND SPRING CLOUD VERSIONS
18
Step 13 - Setting up Currency Exchange Microservice
19
Step 14 - Create a simple hard coded currency exchange service
20
Step 15 - Setting up Dynamic Port in the the Response
21
Step 16 - Configure JPA and Initialized Data
22
Step 17 - Create a JPA Repository
23
Step 18 - Setting up Currency Conversion Microservice
24
Step 19 - Creating a service for currency conversion
25
Step 20 - Invoking Currency Exchange Microservice from Currency Conversion Micro
26
Step 21 - Using Feign REST Client for Service Invocation
27
Step 22 - Setting up client side load balancing with Ribbon
28
COURSE UPDATE : Ribbon DOES NOT work with Spring Boot 2.4
29
Step 23 - Running client side load balancing with Ribbon
30
Debugging problems with Feign and Ribbon
31
Step 24 - Understand the need for a Naming Server
32
Step 25 - Setting up Eureka Naming Server
33
Step 26 - Connecting Currency Conversion Microservice to Eureka
34
Step 27 - Connecting Currency Exchange Microservice to Eureka
35
COURSE UPDATE : Exclude dependency on jackson-dataformat-xml
36
Step 28 - Distributing calls using Eureka and Ribbon
37
Debugging Problems with Naming Server ( Eureka ) and Ribbon
38
Step 29 - A review of implementing Eureka, Ribbon and Feign
39
Step 30 - Introduction to API Gateways
40
Step 31 - Setting up Zuul API Gateway
41
Step 32 - Implementing Zuul Logging Filter
42
Step 33 - Executing a request through Zuul API Gateway
43
Step 34 - Setting up Zuul API Gateway between microservice invocations
44
Debugging Problems with Zuul API Gateway
45
Step 35 - Introduction to Distributed Tracing
46
Step 36 - Implementing Spring Cloud Sleuth
47
Step 37 - Introduction to Distributed Tracing with Zipkin
48
Step 38 - Installing Rabbit MQ
49
Updates to Step 39 - Running Zipkin on Windows
50
Step 39 - Setting up Distributed Tracing with Zipkin
51
Step 40 - Connecting microservices to Zipkin
52
Updates to Step 40 : Use spring-cloud-starter-zipkin and spring-rabbit
53
Step 41 - Using Zipkin UI Dashboard to trace requests
54
Debugging Problems with Zipkin
55
Step 42 - Understanding the need for Spring Cloud Bus
56
Step 43 - Implementing Spring Cloud Bus
57
Step 44 - Fault Tolerance with Hystrix

Microservices with Spring Cloud - V2

1
What's NEW in V2?
2
Have you already completed V1?
3
Course Downloads
4
Step 01 - Setting up Limits Microservice - V2
5
CODE BACKUP FILES and STEP BY STEP CHANGES : For Reference
6
Step 02 - Creating a hard coded limits service - V2
7
Step 03 - Enhance limits service - Get configuration from application props - V2
8
Step 04 - Setting up Spring Cloud Config Server - V2
9
Step 05 - Installing Git and Creating Local Git Repository - V2
10
Debugging problems with Spring Cloud Config Server - V2
11
Step 06 - Connect Spring Cloud Config Server to Local Git Repository - V2
12
Step 07 - Connect Limits Service to Spring Cloud Config Server - V2
13
Step 08 - Configuring Profiles for Limits Service - V2
14
Debugging Guide for Microservices V2 + Docker + Docker Compose
15
Step 09 - Introduction to Currency Conversion & Exchange Microservices - V2
16
Step 10 - Setting up Currency Exchange Microservice - V2
17
URL and Response Structure for Currency Exchange Service
18
Step 11 - Create a simple hard coded currency exchange service - V2
19
Step 12 - Setting up Dynamic Port in the the Response - V2
20
Step 13 - Configure JPA and Initialized Data - V2
21
CODE BACKUP FILES and STEP BY STEP CHANGES : For Reference
22
Step 14 - Create a JPA Repository - V2
23
Step 15 - Setting up Currency Conversion Microservice - V2
24
URL and Response Structure for Currency Conversion Service
25
Step 16 - Creating a service for currency conversion - V2
26
Step 17 - Invoking Currency Exchange from Currency Conversion Microservice - V2
27
Step 18 - Using Feign REST Client for Service Invocation - V2
28
Step 19 - Understand Naming Server and Setting up Eureka Naming Server - V2
29
Debugging Problems with Eureka - V2
30
Step 20 - Connect Currency Conversion & Currency Exchange Microservices - V2
31
Step 21 - QuickStart by Importing Microservices
32
Step 22 - Load Balancing with Eureka, Feign & Spring Cloud LoadBalancer - V2
33
Step 22 - Setting up Spring Cloud API Gateway
34
URLs for next Lecture
35
Step 23 - Enabling Discovery Locator with Eureka for Spring Cloud Gateway
36
Debugging Problems with Spring Cloud Gateway - V2
37
Step 24 - Exploring Routes with Spring Cloud Gateway
38
Step 25 - Implementing Spring Cloud Gateway Logging Filter
39
Step 26 - Getting started with Circuit Breaker - Resilience4j
40
Step 27 - Playing with Resilience4j - Retry and Fallback Methods
41
Step 28 - Playing with Circuit Breaker Features of Resilience4j
42
Update to Step 29 - Change in Configuration
43
Step 29 - Exploring Rate Limiting and BulkHead Features of Resilience4j - V2

Docker with Microservices using Spring Boot and Spring Cloud - V2

1
Step 00 - Match made in Heaven - Docker and Microservices
2
Step 01 - Installing Docker - Docker
3
RECOMMENDATION : Use PowerShell in Windows!
4
Step 02 - Your First Docker Usecase - Deploy a Spring Boot Application
5
Step 03 - Docker Concepts - Registry, Repository, Tag, Image and Containers
6
Step 04 - Playing with Docker Images and Containers
7
Step 05 - Understanding Docker Architecture - Docker Client, Docker Engine
8
Step 06 - Why is Docker Popular
9
Step 07 - Playing with Docker Images
10
Step 08 - Playing with Docker Containers
11
Step 09 - Playing with Docker Commands - stats, system
12
Step 10 - Introduction to Distributed Tracing
13
Step 11 - Launching Zipkin Container using Docker
14
Step 12 - Connecting Currency Exchange Microservice with Zipkin
15
Step 13 - Connecting Currency Conversion Microservice & API Gateway with Zipkin
16
Link for the Next Lecture
17
Step 14 - Getting Setup with Microservices for Creating Container Images
18
Step 15 - Creating Container Image for Currency Exchange Microservice
19
Step 16 - Getting Started with Docker Compose - Currency Exchange Microservice
20
Step 17 - Running Eureka Naming Server with Docker Compose
21
Step 18 - Running Currency Conversion Microservice with Docker Compose
22
Step 19 - Running Spring Cloud API Gateway with Docker Compose
23
Debugging Problems with Docker Compose
24
Step 20 - Running Zipkin with Docker Compose
25
Step 21 - Running Zipkin and RabbitMQ with Docker Compose

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

1
Step 00 - Docker, Kubernetes and Microservices - Made for each other
2
Step 01 - Getting Started with Docker, Kubernetes and Google Kubernetes Engine
3
Step 02 - Creating Google Cloud Account
4
Step 03 - Creating Kubernetes Cluster with Google Kubernete Engine (GKE)
5
Step 04 - Review Kubernetes Cluster and Learn Few Fun Facts about Kubernetes
6
Step 05 - Deploy Your First Spring Boot Application to Kubernetes Cluster
7
Commands executed in this section
8
Step 06 - Quick Look at Kubernetes Concepts - Pods, Replica Sets and Deployment
9
Step 07 - Understanding Pods in Kubernetes
10
Step 08 - Understanding ReplicaSets in Kubernetes
11
Step 09 - Understanding Deployment in Kubernetes
12
Step 10 - Quick Review of Kubernetes Concepts - Pods, Replica Sets & Deployments
13
Step 11 - Understanding Services in Kubernetes
14
Step 12 - Quick Review of GKE on Google Cloud Console
15
Step 13 - Understanding Kubernetes Architecture - Master Node and Nodes
16
Installing Gcloud
17
Installing Kubectl
18
Link for the Next Lecture
19
Step 14 - Setup Currency Exchange & Conversion Microservices - Kubernetes
20
Step 15 - Container images for Exchange & Currency Conversion Microservices
21
Step 16 - Deploy Microservices to Kubernetes & Understand Service Discovery
22
Step 17 - Creating Declarative Configuration Kubernetes YAML for Microservices
23
Step 18 - Clean up Kubernetes YAML for Microservices
24
Step 19 - Enable Logging and Tracing APIs in Google Cloud Platform
25
Step 20 - Deploying Microservices using Kubernetes YAML Configuration
26
Step 21 - Playing with Kubernetes Declarative YAML Configuration
27
Step 22 - Creating Environment Variables to enable Microservice Communication
28
Step 23 - Understanding Centralized Configuration in Kubernetes - Config Maps
29
Step 24 - Exploring Centralized Logging and Monitoring in GKE
30
Step 25 - Exploring Microservices Deployments with Kubernetes
31
Step 26 - Configuring Liveness and Readiness Probes for Microservices with K8S
32
Step 27 - Autoscaling Microservices with Kubernetes
33
Step 28 - Delete Kubernetes Cluster and Thank You!

Thanks

1
Bonus Lecture
2
Thank You

Appendix - Introduction to Spring Boot in 10 Steps

1
0005 - Section Introduction 04 - Introduction to Spring Boot in 10 Steps
2
Step 1 : Introduction to Spring Boot - Goals and Important Features
3
Step 2 : Developing Spring Applications before Spring Boot
4
Step 3 : Using Spring Initializr to create a project
5
Step 4 : Creating a Simple REST Controller
6
Step 5 : What is Spring Boot Auto Configuration?
7
Step 6 : Spring Boot vs Spring vs Spring MVC
8
Step 7 : Spring Boot Starter Projects - Starter Web and Starter JPA
9
Step 8 : Overview of different Spring Boot Starter Projects
10
Step 9 : Spring Boot Actuator
11
Step 10 : Spring Boot Developer Tools

Appendix - Introduction to JPA in 10 Steps

1
Section Introduction - Introduction to JPA in 10 Steps
2
Step 1 : Object Relational Impedence Mismatch
3
Step 2 : World before JPA - JDBC, Spring JDBC and myBatis
4
Step 3 : Introduction to JPA
5
Step 4 : Creating a JPA Project using Spring Initializr
6
COURSE UPDATE : H2 Database URL
7
Step 5 : Defining a JPA Entity - User
8
Step 6 : Defining a Service to manage the Entity - UserService and EntityManager
9
Step 7 : Using a Command Line Runner to save the User to database.
10
Step 8 : Magic of Spring Boot and In Memory Database H2
11
Step 9 : Introduction to Spring Data JPA
12
Step 10 : More JPA Repository : findById and findAll
Vous pouvez afficher et revoir les supports de cours indu00e9finiment, comme une chau00eene u00e0 la demande.
Absolumentu00a0! Si vous disposez d'une connexion Internet, les cours sur Udemy sont disponibles u00e0 tout moment sur n'importe quel appareil. Si vous n'avez pas de connexion Internet, certains instructeurs permettent u00e9galement u00e0 leurs u00e9tudiants de tu00e9lu00e9charger les cours. instructeur cependant, alors assurez-vous d'u00eatre de leur bon cu00f4tu00e9u00a0!
4.5
4.5 sur 5
Notes28017

Détails des Notes

Étoiles 5
12919
Étoiles 4
11178
Étoiles 3
3043
Étoiles 2
500
Étoiles 1
377
Suivre un cours
Garantie de remboursement de 30 jours

Inclut

20 heures de vidéo à la demande
Accès complet à vie
Accès sur le mobile et la télévision
Certificat d'achèvement

Archive

Working hours

Monday 9:30 am - 6.00 pm
Tuesday 9:30 am - 6.00 pm
Wednesday 9:30 am - 6.00 pm
Thursday 9:30 am - 6.00 pm
Friday 9:30 am - 5.00 pm
Saturday Closed
Sunday Closed