Master Microservices with Spring Boot and Spring Cloud
Created by in28Minutes Official
Last updated 2020 01 1.6GB
Duration: 11 hours and 5 minutes
Number of lessons: 135
English, Portuguese [Auto-generated]
https://www.udemy.com/microservices-with-spring-boot-and-spring-cloud/
An awesome journey from Restful Web Services to Microservices with Spring Boot and Spring Cloud
What Will I Learn?
You will be able to develop and design RESTful web services with Spring Boot
You will be able develop Microservices with Spring Boot and Spring Cloud
You will understand how to implement Exception Handling, Validation, HATEOAS and filtering for RESTful Web Services.
You will implement client side load balancing (Ribbon), Dynamic scaling(Eureka Naming Server) and an API Gateway (Zuul)
You will setup Centralized Microservices Configuration with Spring Cloud Config Server
You will learn to implement Distributed tracing for microservices with Spring Cloud Sleuth and Zipkin
You will implement Fault Tolerance for microservices with Hystrix
You will understand how to version your RESTful Web Services
You will understand how to monitor RESTful Services with Spring Boot Actuator
You will understand how to document RESTful Web Services with Swagger
You will understand the best practices in designing RESTful web services
Using Spring Cloud Bus to exchange messages about Configuration updates
Simplify communication with other Microservices using Feign REST Client
Requirements
You should know Java and Spring
A basic understanding of developing web applications is a bonus but NOT mandatory
You are NOT expected to have any experience with Eclipse, Maven or Tomcat
We will help you install Eclipse and get up and running with Maven and Tomcat
Description
Developing RESTful web services is fun. The combination of 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. 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 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 toleranct microservices with Zipkin.
Step wise 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
Who is the target audience?
You want to learn how to design and develop RESTful web services with Spring Boot
You want to learn how to design and develop Microservices with Spring Cloud
You want to learn step by step with a hands-on approach
77组电影外观Log/Rec709视频还原色彩分级调色Lut预设包Pixflow – Colorify Cinematic LUTs
2025-02-13 11:03:14
复古怀旧电影风格温暖色调索尼Sony S-Log3视频调色LUT预设ROMAN HENSE – LUTs 24 for Sony S-Log3
2025-02-13 11:01:09
JUAN MELARA – P6K2Alexa PowerGrade AND LUTs V2 GEN 5
2025-02-13 10:58:24
469组终极照片调色LR预设视频LUT调色预设合集包 TheLutBay – The Ultimate Bundle
2025-02-13 10:56:32
诺兰《奥本海默》紧迫感幽闭恐惧症高级复古电影胶片风深黑色调后期色彩分级LUT预设 Tropic Colour – OPPENHEIMER LOOKS
2025-02-13 10:53:58
3DsMax建模插件集合:rapidTools v1.14+使用教程
2020-07-06 17:44:38
Proko-人体解剖高级付费版(中文字幕)256课
2020-12-21 18:34:01
VitaliStore - All Design Bundle Papercraft Sculptures Design 动物纸模模型 纸模型雕塑设计
2020-07-21 17:18:14
小武拉莫日系摄影后期第二期中文视频教程
2021-12-10 14:26:14
Mod Portfolio 3477506 画册模板 时尚杂志画册模版
2020-07-13 10:43:06
小武拉莫日系摄影后期第二期中文视频教程
2021-12-10 14:26:14
VitaliStore - All Design Bundle Papercraft Sculptures Design 动物纸模模型 纸模型雕塑设计
2020-07-21 17:18:14
3DDD 3DSky PRO models – April 2021
2021-08-09 17:15:13
MasterClass 大师班课程84套合集+中文字幕+持续更新+赠品会员
2021-01-26 16:03:27
加特林机枪模型 加特林机关枪 Minigun Hi-Poly
2019-07-31 11:06:07
评论(0)