image
The Ultimate Drawing Course Beginner to Advanced...
$179
$79
image
User Experience Design Essentials - Adobe XD UI UX...
$179
$79
Total:
$659

Description

Do you want to learn from the
MOST POPULAR
 Course
(250,000+ Students)
  on
Microservices
? 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!
UPDATES
: New Sections on
SPRING BOOT
,
DOCKER
and
KUBERNETES
.
WHAT OUR LEARNERS ARE SAYING:
5 STARS -
Anyone willing to learn
Spring Cloud APIs
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 example
s 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 50+ Best Selling Courses providing Amazing Learning Experiences to
1 MILLION
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 - 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 and Creating Local Git Repository
Step 06 - Connect Spring Cloud Config Server to Local Git Repository
Step 07 - Connect Limits Service to Spring Cloud Config Server
Step 08 - Configuring Profiles for Limits Service
Step 09 - Introduction to Currency Conversion and Currency Exchange Microservices
Step 10 - Setting up Currency Exchange Microservice
Step 11 - Create a simple hard coded currency exchange service
Step 12 - Setting up Dynamic Port in the the Response
Step 13 - Configure JPA and Initialized Data
Step 14 - Create a JPA Repository
Step 15 - Setting up Currency Conversion Microservice
Step 16 - Creating a service for currency conversion
Step 17 - Invoking Currency Exchange Microservice from Currency Conversion Microservice
Step 18 - Using Feign REST Client for Service Invocation
Step 19 - Understand Naming Server and Setting up Eureka Naming Server
Step 20 - Connect Currency Conversion Microservice & Currency Exchange Microservice to Eureka
Step 21 - Load Balancing with Eureka, Feign & Spring Cloud LoadBalancer
Step 22 - Setting up Spring Cloud API Gateway
Step 23 - Enabling Discovery Locator with Eureka for Spring Cloud Gateway
Step 24 - Exploring Routes with Spring Cloud Gateway
Step 25 - Implementing Spring Cloud Gateway Logging Filter
Step 26 - Getting started with Circuit Breaker - Resilience4j
Step 27 - Playing with Resilience4j - Retry and Fallback Methods
Step 28 - Playing with Circuit Breaker Features of Resilience4j
Step 29 - Exploring Rate Limiting and BulkHead Features of Resilience4j
Start Learning Now.
Hit the Enroll Button!
Who this course is for:
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
You want to learn to build containers for Microservices with Docker
You want to orchestrate Microservices with Kubernetes

What you'll learn

Develop and design REST API and REST WEB SERVICES with Spring Boot

Develop MICROSERVICES with Spring Boot and Spring Cloud

Orchestrate microservices with KUBERNETES

Create containers for microservices with DOCKER

IMPLEMENT Exception Handling, Validation, HATEOAS and filtering for RESTful Web Services.

Implement client side load balancing , Dynamic scaling(Eureka Naming Server) and an API Gateway

You will setup Centralized Microservices Configuration with Spring Cloud Config Server

You will learn to implement Distributed tracing for microservices with Zipkin

You will implement Fault Tolerance for microservices with Resilience4J

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 Open API Documentation

You will understand the best practices in designing RESTful web services

Simplify communication with other Microservices using Feign REST Client

Requirements

  • You will need a copy of Adobe XD 2019 or above. A free trial can be downloaded from Adobe.
  • No previous design experience is needed.
  • No previous Adobe XD skills are needed.

Course Content

27 sections • 95 lectures
Expand All Sections
1-Master Microservices with Spring Boot and Spring Cloud - Getting Started
5
1.1-Master Microservices with Spring Boot and Spring Cloud - Getting Started
1.2-Master Microservices with Spring Boot and Spring Cloud - Course Overview
1.3-DO NOT SKIP - Course Downloads - PDF Presentation
1.4-Resources for Installing Java and Eclipse - Next Video
1.5-Master Microservices - Installing Java and Eclipse
2-Introduction To Web Services - V3
5
2.1-Step 01 - What is a Web Service? TRY 1
2.2-Step 02 - What is a Web Service?
2.3-Step 03 - How to make web services platform independent?
2.4-Step 04 - Web Services - Key Terminology
2.5-Step 05 - SOAP vs RESTful Web Services
3-Restful Web Services with Spring Boot - V3
54
3.1-Course Downloads
3.2-Restful Web Services - Section Introduction
3.3-DO NOT SKIP: New to Spring or Spring Boot?
3.4-Step 00 - Creating a REST API with Spring Boot - An Overview
3.5-CODE BACKUP FILES and STEP BY STEP CHANGES : For Reference
3.6-Step 01 - Initializing a REST API Project with Spring Boot
3.7-Step 02 - Creating a Hello World REST API with Spring Boot
3.8-Story of in28minutes
3.9-Step 03 - Enhancing the Hello World REST API to return a Bean
3.10-Step 04 - What's happening in the background? Spring Boot Starters & Autoconfign
3.11-Step 05 - Enhancing the Hello World REST API with a Path Variable
3.12-Step 06 - Designing the REST API for Social Media Application
3.13-Step 07 - Creating User Bean and UserDaoService
3.14-Resources for Next Step
3.15-Step 08 - Implementing GET Methods for User Resource
3.16-Step 09 - Implementing POST Method to create User Resource
3.17-Step 10 - Enhancing POST Method to return correct HTTP Status Code and Location
3.18-About Your Instructor
3.19-Step 11 - Implementing Exception Handling - 404 Resource Not Found
3.20-Resources for Next Step
3.21-Step 12 - Implementing Generic Exception Handling for all Resources
3.22-Step 13 - Implementing DELETE Method to delete a User Resource
3.23-Step 14 - Implementing Validations for REST API
3.24-Step 15 - Overview of Advanced REST API Features
3.25-Step 16 - Understanding Open API Specification and Swagger
3.26-springdoc-openapi Dependency for next lecture
3.27-Step 17 - Configuring Auto Generation of Swagger Documentation
3.28-Step 18 - Exploring Content Negotiation - Implementing Support for XML
3.29-Step 19 - Exploring Internationalization for REST API
3.30-Resources for Next Step
3.31-Step 20 - Versioning REST API - URI Versioning
3.32-Step 21 - Versioning REST API - Request Param, Header and Content Negotiation
3.33-Step 22 - Implementing HATEOAS for REST API
3.34-Step 23 - Implementing Static Filtering for REST API
3.35-Step 24 - Implementing Dynamic Filtering for REST API
3.36-Step 25 - Monitoring APIs with Spring Boot Actuator
3.37-Step 26 - Exploring APIs with Spring Boot HAL Explorer
3.38-DO NOT SKIP - New to JPA and Hibernate?
3.39-Step 27 - Connecting REST API to H2 using JPA and Hibernate - An Overview
3.40-DO NOT SKIP - Additional Setting For Next Step - H2-CONSOLE
3.41-Step 28 - Creating User Entity and some test data
3.42-Step 29 - Enhancing REST API to connect to H2 using JPA and Hibernate
3.43-Step 30 - Creating Post Entity with Many to One Relationship with User Entity
3.44-Step 31 - Implementing a GET API to retrieve all Posts of a User
3.45-Step 32 - Implementing a POST API to create a Post for a User
3.46-Step 33 - Exploring JPA and Hibernate Queries for REST API
3.47-Step 34 - Connecting REST API to MySQL Database - An Overview
3.48-Step 34z - OPTIONAL - Installing Docker
3.49-Resources for Next Step
3.50-Course Update: Changes to MySQL Connector
3.51-Step 35 - OPTIONAL - Connecting REST API to MySQL Database - Implementation
3.52-Step 36 - Implementing Basic Authentication with Spring Security
3.53-Step 37 - Enhancing Spring Security Configuration for Basic Authentication
3.54-How to be consistent?
4-Introduction To Microservices - V3
6
4.1-Step 00 - Microservices Section Introduction
4.2-Step 01 - What is a Monolith Application?
4.3-Step 02 - Introduction to Microservices
4.4-Step 03 - Exploring Microservices Architecture Example
4.5-Step 04 - Advantages of Microservices
4.6-Step 05 - Key Microservice Solutions - Spring Boot and Spring Cloud
5-Microservices with Spring Cloud - V3
48
5.1-DO NOT SKIP - COURSE DOWNLOADS and RESOURCES
5.2-Step 00 01 - Microservices Section Introduction
5.3-Step 00 02 Introduction to Centralized Configuration
5.4-Step 01 - Setting up Limits Microservice - V3
5.5-CODE BACKUP FILES and STEP BY STEP CHANGES : For Reference
5.6-Step 02 - Creating a hard coded limits service - V3
5.7-Step 03 - Enhance limits service - Get configuration from application props - V3
5.8-Standardization of Ports
5.9-Step 04 - Setting up Spring Cloud Config Server - V3
5.10-Step 05 - Installing Git and Creating Local Git Repository - V3
5.11-Debugging problems with Spring Cloud Config Server - V3
5.12-Step 06 - Connect Spring Cloud Config Server to Local Git Repository - V3
5.13-Step 07 - Connect Limits Service to Spring Cloud Config Server - V3
5.14-What should I do when I face a challenge
5.15-Step 08 - Configuring Profiles for Limits Service - V3
5.16-Debugging Guide for Microservices V3 + Docker + Docker Compose
5.17-Step 09 - Introduction to Currency Conversion & Exchange Microservices - V3
5.18-Step 10 - Setting up Currency Exchange Microservice - V3
5.19-URL and Response Structure for Currency Exchange Service
5.20-Step 11 - Create a simple hard coded currency exchange service - V3
5.21-Step 12 - Setting up Dynamic Port in the the Response - V3
5.22-Step 13 - Configure JPA and Initialized Data - V3
5.23-CODE BACKUP FILES and STEP BY STEP CHANGES : For Reference
5.24-Step 14 - Create a JPA Repository - V3
5.25-How to take care of yourselves
5.26-Step 15 - Setting up Currency Conversion Microservice - V3
5.27-URL and Response Structure for Currency Conversion Service
5.28-Step 16 - Creating a service for currency conversion - V3
5.29-Step 17 - Invoking Currency Exchange from Currency Conversion Microservice - V3
5.30-Step 18 - Using Feign REST Client for Service Invocation - V3
5.31-Step 19 - Understand Naming Server and Setting up Eureka Naming Server - V3
5.32-Debugging Problems with Eureka - V3
5.33-Step 20 - Connect Currency Conversion & Currency Exchange Microservices - V3
5.34-All Work and No Play Make Adam and Eve Dull Kids
5.35-Step 21 - Course Update - Github Repositories
5.36-Step 22 - Load Balancing with Eureka, Feign & Spring Cloud LoadBalancer - V3
5.37-Step 22 - Setting up Spring Cloud API Gateway - V3
5.38-URLs for next Lecture
5.39-Step 23 - Enabling Discovery Locator with Eureka for Spring Cloud Gateway - V3
5.40-Debugging Problems with Spring Cloud Gateway - V3
5.41-Step 24 - Exploring Routes with Spring Cloud Gateway - V3
5.42-Step 25 - Implementing Spring Cloud Gateway Logging Filter- V3
5.43-Step 26 - Getting started with Circuit Breaker - Resilience4j - V3
5.44-DO NOT SKIP: Update to Step 28 and Step 29 - Change in Configuration
5.45-Step 27 - Playing with Resilience4j - Retry and Fallback Methods - V3
5.46-Step 28 - Playing with Circuit Breaker Features of Resilience4j - V3
5.47-Step 29 - Exploring Rate Limiting and BulkHead Features of Resilience4j - V3
5.48-How to be Productive - 3 Tips
6-Docker with Microservices using Spring Boot and Spring Cloud - V3
31
6.1-Resources For This Section
6.2-Step 00 - Match made in Heaven - Docker and Microservices
6.3-RECOMMENDATION : Use PowerShell in Windows!
6.4-Step 01 - Installing Docker
6.5-Commands used in the next lecture
6.6-Step 02 - Getting Started with Docker
6.7-Step 03 - Understanding Docker Fundamentals
6.8-Step 04 - Understanding How Docker Works
6.9-Step 05 - Understanding Docker Terminology
6.10-Download For Next Lecture
6.11-Step 06 - Creating Docker Image for a Spring Boot Project - Dockerfile
6.12-Step 07 - Building Spring Boot Docker Image using Multi Stage Dockerfile
6.13-Step 08 - Building Spring Boot Docker Image - Optimizing Dockerfile
6.14-Step 09 - Building Docker Image with Spring Boot Maven Plugin
6.15-Step 10 - Introduction to Distributed Tracing
6.16-Step 11 - Launching Zipkin Container using Docker
6.17-Step 12 00 - Getting Started with Observability and OpenTelemetry
6.18-Next Lecture - Configuration for Connecting Microservices with Zipkin
6.19-Step 12 - Connecting Currency Exchange Microservice with Zipkin
6.20-Step 13 - Connecting Currency Conversion Microservice & API Gateway with Zipkin
6.21-Link for the Next Lecture
6.22-Step 14 - Getting Setup with Microservices for Creating Container Images
6.23-Step 15 - Creating Container Image for Currency Exchange Microservice
6.24-Step 16 - Getting Started with Docker Compose - Currency Exchange Microservice
6.25-Step 17 - Running Eureka Naming Server with Docker Compose
6.26-Step 18 - Running Currency Conversion Microservice with Docker Compose
6.27-Step 19 - Running Spring Cloud API Gateway with Docker Compose
6.28-Debugging Problems with Docker Compose
6.29-Spring Boot 3 Update - Zipkin URL Configuration
6.30-Step 20 - Running Zipkin with Docker Compose
6.31-How to handle failures
7-Kubernetes with Microservices using Docker, Spring Boot and Spring Cloud - V3
34
7.1-Resources For This Section
7.2-Step 00 - Docker, Kubernetes and Microservices - Made for each other
7.3-Step 01 - Creating GCP - Google Cloud Platform - Account
7.4-Step 02 - Kubernetes Journey - Creating a GKE Cluster
7.5-Commands Executed in This Section
7.6-Step 03 - Kubernetes Journey - Create a Deployment and a Service
7.7-Step 04 - Exploring GKE in GCP Console
7.8-Step 05 - Kubernetes Journey - Scaling Deployments and Resizing Node Pools
7.9-Step 06 - Kubernetes Journey - Autoscaling, Config Map and Secrets
7.10-Step 07 - Exploring Kubernetes Deployments with YAML Declarative Configuration
7.11-Step 08 - Kubernetes Journey - The End
7.12-Step 09 - Understanding Kubernetes Clusters - Google Kubernetes Engine GKE
7.13-Step 10 - Understanding Pods in Kubernetes
7.14-Step 11 - Understanding Deployments and Replica Sets in Kubernetes
7.15-Step 12 - Understanding Services in Kubernetes
7.16-Step 13 - 01 Installing Gcloud
7.17-Step 13 - 02 Installing Kubectl
7.18-Link for the Next Lecture
7.19-Step 14 - Setup Currency Exchange & Conversion Microservices - Kubernetes
7.20-Step 15 - Container images for Exchange & Currency Conversion Microservices
7.21-Step 16 - Deploy Microservices to Kubernetes & Understand Service Discovery
7.22-Step 17 - Creating Declarative Configuration Kubernetes YAML for Microservices
7.23-Step 18 - Clean up Kubernetes YAML for Microservices
7.24-Step 19 - Enable Logging and Tracing APIs in Google Cloud Platform
7.25-Step 20 - Deploying Microservices using Kubernetes YAML Configuration
7.26-Step 21 - Playing with Kubernetes Declarative YAML Configuration
7.27-Step 22 - Creating Environment Variables to enable Microservice Communication
7.28-Step 23 - Understanding Centralized Configuration in Kubernetes - Config Maps
7.29-Step 24 - Exploring Centralized Logging and Monitoring in GKE
7.30-Step 25 - Exploring Microservices Deployments with Kubernetes
7.31-Step 26 - Configuring Liveness and Readiness Probes for Microservices with K8S
7.32-Step 27 - Autoscaling Microservices with Kubernetes
7.33-Step 28 - Delete Kubernetes Cluster and Thank You!
7.34-How can you help us?
8-Thanks
3
8.1-DO NOT SKIP - I Would Love To Congratulate You!
8.2-Master Microservices with Spring Boot and Spring Cloud - Congratulations
8.3-Bonus Lecture
9-Appendix - Introduction to Spring Framework in 10 Steps (Actually 16)
16
9.1-Step 01 - Getting Started with Spring Framework - Goals
9.2-Step 02 - Setting up New Spring Project with Spring Initializr
9.3-Step 03 - Iteration 1 - Building Tightly Coupled GameRunner and MarioGame
9.4-Step 04 - Understanding Tight Coupling
9.5-Step 05 - Iteration 2 - Loose Coupling Level 1 - Interfaces
9.6-Step 06 - Exploring Loose Coupling with Interfaces - PacmanGame
9.7-Step 07 - Iteration 3 - Loose Coupling Level 2 - Spring Framework
9.8-Step 08 - Q1 - Spring Framework - Understanding whats happening in Background
9.9-Step 09 - Q2 - Spring Framework - Understanding Important Terminology
9.10-Step 10 - Q3 - Spring Framework - Does Spring Framework Add Value?
9.11-Step 11 - Q4 - Spring Framework - Running Super Contra
9.12-Step 12 - Q5 - Spring Framework - Maven
9.13-Step 13 - Exploring Spring Framework Dependency Injection Types
9.14-Step 14 - Exploring Spring Modules
9.15-Step 15 - Exploring Spring Projects
9.16-Step 16 - Getting Started with Spring Framework - Review
10-Appendix - Introduction to Spring Boot in 12 Steps
15
10.1-Step 01 - Getting Started with Spring Boot - Goals
10.2-Step 02 - Understanding the World Before Spring Boot - 10000 Feet Overview
10.3-Step 03 - Setting up New Spring Boot Project with Spring Initializr
10.4-Step 04 - Build a Hello World API with Spring Boot
10.5-Step 05 - Understanding the Goal of Spring Boot
10.6-Step 06 - Understanding Spring Boot Magic - Spring Boot Starter Projects
10.7-Step 07 - Understanding Spring Boot Magic - Auto Configuration
10.8-Step 08 - Build Faster with Spring Boot DevTools
10.9-Step 09 - Get Production Ready with Spring Boot - 1 - Profiles
10.10-Step 10 - Get Production Ready with Spring Boot - 2 - ConfigurationProperties
10.11-Step 11 - Get Production Ready with Spring Boot - 3 - Embedded Servers
10.12-Step 12 - Get Production Ready with Spring Boot - 4 - Actuator
10.13-Step 13 - Understanding Spring Boot vs Spring vs Spring MVC
10.14-Step 14 - Getting Started with Spring Boot - Review
10.15-Share Your Experience
11-Appendix - Introduction to JUnit
6
11.1-01 Step 01 - What is JUnit and Unit Testing?
11.2-01 Step 02 - Your First JUnit Project and Green Bar
11.3-01 Step 03 - Your First Code and First Unit Test
11.4-01 Step 04 - Exploring other assert methods
11.5-01 Step 05 - Exploring few important JUnit annotations
11.6-Reviewing Regularly is the Key
12-Appendix - Introduction To Mockito
7
12.1-02 Step 00 - Introduction to Section - Mockito in 5 Steps
12.2-02 Step 01 - Setting up a Spring Boot Project
12.3-02 Step 02 - Understanding problems with Stubs
12.4-02 Step 03 - Writing your first Mockito test with Mocks
12.5-02 Step 04 - Simplifying Tests with Mockito Annotations - @Mock, @InjectMocks
12.6-02 Step 05 - Exploring Mocks further by Mocking List interface
12.7-Understanding Importance of Deep Work
13-Appendix - Introduction To Maven
10
13.1-Maven Step 01 - Introduction to Maven
13.2-Maven Step 02 - Creating a Spring Boot Project with Maven
13.3-Maven Step 03 - Exploring Maven pom.xml for Spring Boot Project
13.4-Maven Step 04 - Exploring Maven Parent Pom for Spring Boot Project
13.5-Maven Step 05 - Exploring Maven Further
13.6-Maven Step 06 - Exploring Maven Build Lifecycle with a Spring Boot Project
13.7-Maven Step 07 - How does Maven Work?
13.8-Maven Step 08 - Playing with Maven Commands
13.9-Maven Step 09 - How are Spring Projects Versioned?
13.10-How to stay relevant
14-Appendix - Introduction To Gradle
6
14.1-Gradle Step 01 - Getting Started with Gradle
14.2-Gradle Step 02 - Creating a Spring Boot Project with Gradle
14.3-Gradle Step 03 - Exploring Gradle Build and Settings Files
14.4-Gradle Step 04 - Exploring Gradle Plugins for Java and Spring Boot
14.5-Gradle Step 05 - Maven or Gradle - Which one to use for Spring Boot Projects?
14.6-Do You Know Your Learning Style
15-Appendix - Introduction to JPA in 10 Steps - V2
13
15.1-Step 01 - Getting Started with JPA and Hibernate - Goals
15.2-Step 02 - Setting up New Spring Boot Project for JPA and Hibernate
15.3-Step 03 - Launching up H2 Console and Creating Course Table in H2
15.4-Step 04 - Getting Started with Spring JDBC
15.5-Step 05 - Inserting Hardcoded Data using Spring JDBC
15.6-Step 06 - Inserting and Deleting Data using Spring JDBC
15.7-Step 07 - Querying Data using Spring JDBC
15.8-Step 08 - Getting Started with JPA and EntityManager
15.9-Step 09 - Exploring the Magic of JPA
15.10-Step 10 - Getting Started with Spring Data JPA
15.11-Step 11 - Exploring features of Spring Data JPA
15.12-Step 12 - Understanding difference between Hibernate and JPA
15.13-How to Decide Your Goals
16-APPENDIX - Introduction to Functional Programming in 30 Minutes
10
16.1-Step 00 - Introduction to Functional Programming - Overview
16.2-Step 01 - Getting Started with Functional Programming with Java
16.3-Step 02 - Writing Your First Java Functional Program
16.4-Step 03 - Improving Java Functional Program with filter
16.5-Step 04 - Using Lambda Expression to enhance your Functional Program
16.6-Step 05 - Do Functional Programming Exercises with Streams, Filters and Lambdas
16.7-Step 06 - Using map in Functional Programs - with Exercises
16.8-Step 07 - Understanding Optional class in Java
16.9-Step 08 - Quick Review of Functional Programming Basics
16.10-Why Should You Embrace a Growth Mindset
17-APPENDIX - Microservices with Spring Cloud - V1 - Spring Boot v2.3 & LOWER
57
17.1-Step 00 - Microservice Components - Standardizing Ports and URL
17.2-Step 01 - Part 1 - Intro to Limits Microservice and Spring Cloud Config Server
17.3-Step 01 - Part 2 - Setting up Limits Microservice
17.4-COURSE UPDATE : Limits service with >=2.4.0 of SPRING BOOT
17.5-Step 02 - Creating a hard coded limits service
17.6-Step 03 -Enhance limits service to get configuration from application properties
17.7-Step 04 - Setting up Spring Cloud Config Server
17.8-Step 05 - Installing Git
17.9-Step 06 - Creating Local Git Repository
17.10-Step 07 - Connect Spring Cloud Config Server to Local Git Repository
17.11-Step 08 - Configuration for Multiple Environments in Git Repository
17.12-Step 09 - Connect Limits Service to Spring Cloud Config Server
17.13-Debugging problems with Spring Cloud Config Server
17.14-Step 10 - Configuring Profiles for Limits Service
17.15-Step 11 - A review of Spring Cloud Config Server
17.16-Step 12 - Introduction to Currency Conversion and Currency Exchange Microservice
17.17-IMPORTANT : SPRING BOOT AND SPRING CLOUD VERSIONS
17.18-Step 13 - Setting up Currency Exchange Microservice
17.19-Step 14 - Create a simple hard coded currency exchange service
17.20-Step 15 - Setting up Dynamic Port in the the Response
17.21-Step 16 - Configure JPA and Initialized Data
17.22-Step 17 - Create a JPA Repository
17.23-Step 18 - Setting up Currency Conversion Microservice
17.24-Step 19 - Creating a service for currency conversion
17.25-Step 20 - Invoking Currency Exchange Microservice from Currency Conversion Micro
17.26-Step 21 - Using Feign REST Client for Service Invocation
17.27-Step 22 - Setting up client side load balancing with Ribbon
17.28-COURSE UPDATE : Ribbon DOES NOT work with Spring Boot 2.4
17.29-Step 23 - Running client side load balancing with Ribbon
17.30-Debugging problems with Feign and Ribbon
17.31-Step 24 - Understand the need for a Naming Server
17.32-Step 25 - Setting up Eureka Naming Server
17.33-Step 26 - Connecting Currency Conversion Microservice to Eureka
17.34-Step 27 - Connecting Currency Exchange Microservice to Eureka
17.35-COURSE UPDATE : Exclude dependency on jackson-dataformat-xml
17.36-Step 28 - Distributing calls using Eureka and Ribbon
17.37-Debugging Problems with Naming Server ( Eureka ) and Ribbon
17.38-Step 29 - A review of implementing Eureka, Ribbon and Feign
17.39-Step 30 - Introduction to API Gateways
17.40-Step 31 - Setting up Zuul API Gateway
17.41-Step 32 - Implementing Zuul Logging Filter
17.42-Step 33 - Executing a request through Zuul API Gateway
17.43-Step 34 - Setting up Zuul API Gateway between microservice invocations
17.44-Debugging Problems with Zuul API Gateway
17.45-Step 35 - Introduction to Distributed Tracing
17.46-Step 36 - Implementing Spring Cloud Sleuth
17.47-Step 37 - Introduction to Distributed Tracing with Zipkin
17.48-Step 38 - Installing Rabbit MQ
17.49-Updates to Step 39 - Running Zipkin on Windows
17.50-Step 39 - Setting up Distributed Tracing with Zipkin
17.51-Step 40 - Connecting microservices to Zipkin
17.52-Updates to Step 40 : Use spring-cloud-starter-zipkin and spring-rabbit
17.53-Step 41 - Using Zipkin UI Dashboard to trace requests
17.54-Debugging Problems with Zipkin
17.55-Step 42 - Understanding the need for Spring Cloud Bus
17.56-Step 43 - Implementing Spring Cloud Bus
17.57-Step 44 - Fault Tolerance with Hystrix