Companies Home Search Profile

Practical Approach to Spring Cloud

Focused View

Tushar Girase

2:50:17

118 View
  • 1. Introduction.mp4
    00:39
  • 2. Roadmap to course.mp4
    04:38
  • 1.1 empdb.zip
  • 1. Import Data to Database.mp4
    01:20
  • 2.1 Create Employee Service.zip
  • 2. Create Employee Service.mp4
    01:25
  • 3.1 3.zip
  • 3.2 Connect Employee Service to MySQL Server.zip
  • 3. Connect Employee Service to MySQL Server.mp4
    01:50
  • 4.1 Introduce Entity and Repository in Employee Service.zip
  • 4. Introduce Entity and Repository in Employee Service.mp4
    03:41
  • 5.1 Introduce DTO and Service to Employee Service.zip
  • 5. Introduce DTO and Service to Employee Service.mp4
    02:35
  • 6.1 Call Service From Controller in Employee Service.zip
  • 6. Call Service From Controller in Employee Service.mp4
    02:56
  • 7.1 Call Repository From Service in Employee Service.zip
  • 7. Call Repository From Service in Employee Service.mp4
    00:08
  • 8.1 API to get Employee info by emp code.zip
  • 8. API to get Employee info by emp code.mp4
    03:34
  • 9. Introduce Employee Signup DTO.mp4
    02:21
  • 10. Create Employee Entiry and Save.mp4
    05:53
  • 11.1 Test Create New Employee REST API.zip
  • 11. Test Create New Employee REST API.mp4
    01:25
  • 12.1 Department Service Assignment.zip
  • 12. Department Service Assignment.mp4
    00:30
  • 13. Department Service Assignment.html
  • 14.1 Introduce Exception Classes in Employee Service.zip
  • 14. Introduce Exception Classes in Employee Service.mp4
    04:01
  • 15.1 Test Exceptions In Employee Service.zip
  • 15. Test Exceptions In Employee Service.mp4
    09:56
  • 16. Assignment Exception Handling in Department Service.html
  • 1. Add Webflux Dependency.mp4
    01:16
  • 2.1 Calling Department Service from Employee Service using WebClient.zip
  • 2. Calling Department Service from Employee Service using WebClient.mp4
    07:54
  • 1. Why Feign Client Library.mp4
    00:48
  • 2. Add OpenFeign Dependency.mp4
    00:47
  • 3. Implement Feign Client in Employee Service.mp4
    05:39
  • 4.1 Feign Client In Action.zip
  • 4. Feign Client In Action.mp4
    01:00
  • 1. Why we need service registry and discovery.mp4
    03:03
  • 2.1 Create Eureka Server.zip
  • 2. Create Eureka Server.mp4
    03:25
  • 3.1 Register Employee and Department Microservice with Eureka Server.zip
  • 3. Register Employee and Department Microservice with Eureka Server.mp4
    03:57
  • 4. Host Department Service on Two ports.mp4
    02:40
  • 1. Why Load Balancing.mp4
    01:26
  • 2. Add Spring Cloud Loadbalancer Dependency.mp4
    00:46
  • 3.1 Client Side Load Balancing in Employee Service.zip
  • 3. Client Side Load Balancing in Employee Service.mp4
    06:59
  • 1. What is Gateway Server and Need for it.mp4
    01:44
  • 2. Create API Gateway Server.mp4
    01:09
  • 3. Configure API Gateway Server.mp4
    02:51
  • 4.1 API Gateway in Action.zip
  • 4. API Gateway in Action.mp4
    01:57
  • 5.1 Filters in API Gateway.zip
  • 5. Filters in API Gateway.mp4
    07:14
  • 6. Change Feign Client to Call API Gateway for Department Service.mp4
    03:17
  • 7.1 Load Balance Requests From API Gateway.zip
  • 7. Load Balance Requests From API Gateway.mp4
    00:55
  • 1. What is Circuit Breaker and Resilience4J.mp4
    02:47
  • 2. Add Resilience AOP and Atuator Dependency.mp4
    00:58
  • 3.1 Configurre Resilience4j in Employee Service.zip
  • 3. Configurre Resilience4j in Employee Service.mp4
    07:34
  • 4.1 Circuitbreaker Configuration in Employee Service.zip
  • 4. Circuitbreaker Configuration in Employee Service.mp4
    03:42
  • 5. Resilience4j in Action.mp4
    04:20
  • 1. Why we need Spring Sleuth.mp4
    03:27
  • 2.1 Configure Spring Sleuth in Mocroservices.zip
  • 2. Configure Spring Sleuth in Microservices.mp4
    05:06
  • 3. Spring sleuth in action.mp4
    04:18
  • 4. Configure Zipkin in Microservices.mp4
    02:12
  • 5.1 Zipkin server configuration.zip
  • 5. Zipkin server configuration.mp4
    01:30
  • 6. Zipkin In Action.mp4
    02:01
  • 7. Using Jaeger with Sleuth instead of Zipkin.mp4
    02:59
  • 1. Why We Need Spring Cloud Configuration.mp4
    03:01
  • 2.1 Spring Cloud Config.zip
  • 2. Initialize Git Repository for Cloud Config.mp4
    01:59
  • 3.1 Spring Cloud Config.zip
  • 3. Create Config Server and Read Properties.mp4
    05:35
  • 4.1 Spring Cloud Config.zip
  • 4. Configure Employee Service with Config Server.mp4
    03:57
  • 5.1 Spring Cloud Config.zip
  • 5. Example why to reload the properties from Config Server.mp4
    01:41
  • 6.1 Spring Cloud Config.zip
  • 6. Configure Employee Microservice To Refresh Properties without restart.mp4
    04:16
  • 7.1 Spring Cloud Config.zip
  • 7. Refreshing Congigurations Without Restart In Action.mp4
    03:15
  • Description


    Spring Boot, Hibernate, WebFlux, OpenFeign, Gateway, Load Balancer, Sleuth, Zipkin, Resilience4J, Spring Cloud

    What You'll Learn?


    • Become Spring Cloud Microservices Developer
    • Learn About Spring Cloud Technologies
    • Learn to develop Spring Microservices From Scratch
    • To learn about how microservices are hosted and configured

    Who is this for?


  • Beginner Java Developers
  • Experienced Java Developers
  • More details


    Description

    This course will take you to the learning journey starting from creating the microservice till configuring it with the industry standard cloud technologies. This course is suitable for experienced Java developers as well as those who have little knowledge of Spring framework.


    We will first start with creating a simple microservice then we will add entities and dto to the service. Exposing them with controller we will implement repositories and services. After that we will add validations and exception handling to the microservice. Also there will be an assignment for the same with another microservice.


    First part can be skipped if anyone want to focus on cloud technologies. Then we will add spring cloud technologies to the course.


    Starting with Webclient API we will call one microservice from another. Then by introducing the service registry and discovery we no longer need to maintain the URLs. We will take a look at Open Feign. Adding multiple hosting to microservice needs load balancing the requests between them there we will introduce load balancer. As we will be having multiple hosting there needs a single URL to the user which can be achieved by Spring Cloud Gateway. After introducing the gateway we need resiliency in our services hence introduction to Resilience4J is must. As there will be many calls passing through multiple microservices we will introduce distributed tracing using Spring Sleuth and Zipkin. In the end we will implement Spring Config Server to distribute the configurations across the microservices.

    Who this course is for:

    • Beginner Java Developers
    • Experienced Java Developers

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Tushar Girase
    Tushar Girase
    Instructor's Courses
    Having 7.5 Years of experience in Java Web development. Worked on SQL and No SQL databases. Initially started with Monolith server application then moved to the Microservices. Currently working on AWS technologies in the organization like AWS Lamba, EC2, S3. Experienced on PLM and now Finance. I love to design the frameworks so we can talk about design patterns and implementation of them.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 55
    • duration 2:50:17
    • Release Date 2023/03/15

    Courses related to Spring Boot

    Courses related to Spring Framework

    Subtitle
    Spring Security Zero to Master along with JWT,OAUTH2
    Subtitle
    Spring Cloud Load Balancing
    UdemySpring Cloud Load Balancing
    28:52
    English subtitles
    04/09/2024
    Subtitle
    Spring Batch Framework for Beginners
    Udemy Abhay Redkar
    Abhay Redkar
    Spring Batch Framework for Beginners
    4:59:47
    English subtitles
    05/19/2024