Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Master Microservices with Spring Boot and Spring Cloud, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:03:37
    Microservices and RESTful APIs with Spring Boot and Spring Cloud - Preview
  • Урок 2. 00:02:34
    Introduction to the Course & Course Guide
  • Урок 3. 00:00:52
    A surprise! New Course Updates
  • Урок 4. 00:06:09
    What is a Web Service?
  • Урок 5. 00:06:42
    Important How Questions related to Web Services
  • Урок 6. 00:04:14
    Web Services - Key Terminology
  • Урок 7. 00:04:41
    Introduction to SOAP Web Services
  • Урок 8. 00:07:34
    Introduction to RESTful Web Services
  • Урок 9. 00:02:21
    SOAP vs RESTful Web Services
  • Урок 10. 00:04:05
    Step 00 - Creating a REST API with Spring Boot - An Overview
  • Урок 11. 00:07:22
    Step 01 - Initializing a REST API Project with Spring Boot
  • Урок 12. 00:06:22
    Step 02 - Creating a Hello World REST API with Spring Boot
  • Урок 13. 00:04:31
    Step 03 - Enhancing the Hello World REST API to return a Bean
  • Урок 14. 00:09:07
    Step 04 - What's happening in the background? Spring Boot Starters & Autoconfign
  • Урок 15. 00:04:14
    Step 05 - Enhancing the Hello World REST API with a Path Variable
  • Урок 16. 00:07:29
    Step 06 - Designing the REST API for Social Media Application
  • Урок 17. 00:06:44
    Step 07 - Creating User Bean and UserDaoService
  • Урок 18. 00:08:29
    Step 08 - Implementing GET Methods for User Resource
  • Урок 19. 00:08:37
    Step 09 - Implementing POST Method to create User Resource
  • Урок 20. 00:11:25
    Step 10 - Enhancing POST Method to return correct HTTP Status Code and Location
  • Урок 21. 00:07:50
    Step 11 - Implementing Exception Handling - 404 Resource Not Found
  • Урок 22. 00:11:30
    Step 12 - Implementing Generic Exception Handling for all Resources
  • Урок 23. 00:03:26
    Step 13 - Implementing DELETE Method to delete a User Resource
  • Урок 24. 00:11:48
    Step 14 - Implementing Validations for REST API
  • Урок 25. 00:01:13
    Step 15 - Overview of Advanced REST API Features
  • Урок 26. 00:04:58
    Step 16 - Understanding Open API Specification and Swagger
  • Урок 27. 00:09:54
    Step 17 - Configuring Auto Generation of Swagger Documentation
  • Урок 28. 00:05:57
    Step 18 - Exploring Content Negotiation - Implementing Support for XML
  • Урок 29. 00:09:40
    Step 19 - Exploring Internationalization for REST API
  • Урок 30. 00:09:02
    Step 20 - Versioning REST API - URI Versioning
  • Урок 31. 00:11:13
    Step 21 - Versioning REST API - Request Param, Header and Content Negotiation
  • Урок 32. 00:10:44
    Step 22 - Implementing HATEOAS for REST API
  • Урок 33. 00:09:55
    Step 23 - Implementing Static Filtering for REST API
  • Урок 34. 00:09:27
    Step 24 - Implementing Dynamic Filtering for REST API
  • Урок 35. 00:06:55
    Step 25 - Monitoring APIs with Spring Boot Actuator
  • Урок 36. 00:04:55
    Step 26 - Exploring APIs with Spring Boot HAL Explorer
  • Урок 37. 00:01:18
    Step 27 - Connecting REST API to H2 using JPA and Hibernate - An Overview
  • Урок 38. 00:05:27
    Step 28 - Creating User Entity and some test data
  • Урок 39. 00:10:36
    Step 29 - Enhancing REST API to connect to H2 using JPA and Hibernate
  • Урок 40. 00:10:23
    Step 30 - Creating Post Entity with Many to One Relationship with User Entity
  • Урок 41. 00:03:14
    Step 31 - Implementing a GET API to retrieve all Posts of a User
  • Урок 42. 00:06:22
    Step 32 - Implementing a POST API to create a Post for a User
  • Урок 43. 00:06:37
    Step 33 - Exploring JPA and Hibernate Queries for REST API
  • Урок 44. 00:01:07
    Step 34 - Connecting REST API to MySQL Database - An Overview
  • Урок 45. 00:04:26
    Step 34z - OPTIONAL - Installing Docker
  • Урок 46. 00:15:20
    Step 35 - OPTIONAL - Connecting REST API to MySQL Database - Implementation
  • Урок 47. 00:05:19
    Step 36 - Implementing Basic Authentication with Spring Security
  • Урок 48. 00:08:46
    Step 37 - Enhancing Spring Security Configuration for Basic Authentication
  • Урок 49. 00:01:26
    Section Introduction - Microservices with Spring Cloud
  • Урок 50. 00:04:25
    Step 00 - 01 - Introduction to Microservices
  • Урок 51. 00:05:52
    Step 00 - 02 - Challenges with Microservices
  • Урок 52. 00:07:49
    Step 00 - 03 - Introduction to Spring Cloud
  • Урок 53. 00:02:47
    Step 00 - 04 - Advantages of Microservices Architectures
  • Урок 54. 00:02:38
    Step 00 - 05 - Microservice Components - Standardizing Ports and URL
  • Урок 55. 00:01:30
    Next Section uses Latest Version of Spring Boot
  • Урок 56. 00:04:52
    Step 01 - Part 1 - Intro to Limits Microservice and Spring Cloud Config Server
  • Урок 57. 00:05:35
    Step 01 - Part 2 - Setting up Limits Microservice
  • Урок 58. 00:05:00
    Step 02 - Creating a hard coded limits service
  • Урок 59. 00:05:15
    Step 03 -Enhance limits service to get configuration from application properties
  • Урок 60. 00:03:56
    Step 04 - Setting up Spring Cloud Config Server
  • Урок 61. 00:01:46
    Step 05 - Installing Git
  • Урок 62. 00:04:33
    Step 06 - Creating Local Git Repository
  • Урок 63. 00:05:12
    Step 07 - Connect Spring Cloud Config Server to Local Git Repository
  • Урок 64. 00:06:19
    Step 08 - Configuration for Multiple Environments in Git Repository
  • Урок 65. 00:04:59
    Step 09 - Connect Limits Service to Spring Cloud Config Server
  • Урок 66. 00:05:45
    Step 10 - Configuring Profiles for Limits Service
  • Урок 67. 00:04:17
    Step 11 - A review of Spring Cloud Config Server
  • Урок 68. 00:03:15
    Step 12 - Introduction to Currency Conversion and Currency Exchange Microservice
  • Урок 69. 00:03:36
    Step 13 - Setting up Currency Exchange Microservice
  • Урок 70. 00:06:30
    Step 14 - Create a simple hard coded currency exchange service
  • Урок 71. 00:07:11
    Step 15 - Setting up Dynamic Port in the the Response
  • Урок 72. 00:07:57
    Step 16 - Configure JPA and Initialized Data
  • Урок 73. 00:05:17
    Step 17 - Create a JPA Repository
  • Урок 74. 00:02:17
    Step 18 - Setting up Currency Conversion Microservice
  • Урок 75. 00:06:59
    Step 19 - Creating a service for currency conversion
  • Урок 76. 00:08:16
    Step 20 - Invoking Currency Exchange Microservice from Currency Conversion Micro
  • Урок 77. 00:11:31
    Step 21 - Using Feign REST Client for Service Invocation
  • Урок 78. 00:05:12
    Step 22 - Setting up client side load balancing with Ribbon
  • Урок 79. 00:04:40
    Step 23 - Running client side load balancing with Ribbon
  • Урок 80. 00:03:22
    Step 24 - Understand the need for a Naming Server
  • Урок 81. 00:05:26
    Step 25 - Setting up Eureka Naming Server
  • Урок 82. 00:03:07
    Step 26 - Connecting Currency Conversion Microservice to Eureka
  • Урок 83. 00:03:03
    Step 27 - Connecting Currency Exchange Microservice to Eureka
  • Урок 84. 00:06:36
    Step 28 - Distributing calls using Eureka and Ribbon
  • Урок 85. 00:03:59
    Step 29 - A review of implementing Eureka, Ribbon and Feign
  • Урок 86. 00:02:51
    Step 30 - Introduction to API Gateways
  • Урок 87. 00:04:37
    Step 31 - Setting up Zuul API Gateway
  • Урок 88. 00:06:02
    Step 32 - Implementing Zuul Logging Filter
  • Урок 89. 00:05:28
    Step 33 - Executing a request through Zuul API Gateway
  • Урок 90. 00:07:17
    Step 34 - Setting up Zuul API Gateway between microservice invocations
  • Урок 91. 00:03:27
    Step 35 - Introduction to Distributed Tracing
  • Урок 92. 00:08:35
    Step 36 - Implementing Spring Cloud Sleuth
  • Урок 93. 00:04:35
    Step 37 - Introduction to Distributed Tracing with Zipkin
  • Урок 94. 00:04:32
    Step 38 - Installing Rabbit MQ
  • Урок 95. 00:07:07
    Step 39 - Setting up Distributed Tracing with Zipkin
  • Урок 96. 00:03:36
    Step 40 - Connecting microservices to Zipkin
  • Урок 97. 00:06:34
    Step 41 - Using Zipkin UI Dashboard to trace requests
  • Урок 98. 00:09:17
    Step 42 - Understanding the need for Spring Cloud Bus
  • Урок 99. 00:05:02
    Step 43 - Implementing Spring Cloud Bus
  • Урок 100. 00:07:11
    Step 44 - Fault Tolerance with Hystrix
  • Урок 101. 00:01:18
    What's NEW in V2?
  • Урок 102. 00:01:07
    Have you already completed V1?
  • Урок 103. 00:06:00
    Step 01 - Setting up Limits Microservice - V2
  • Урок 104. 00:05:29
    Step 02 - Creating a hard coded limits service - V2
  • Урок 105. 00:04:25
    Step 03 - Enhance limits service - Get configuration from application props - V2
  • Урок 106. 00:04:46
    Step 04 - Setting up Spring Cloud Config Server - V2
  • Урок 107. 00:04:12
    Step 05 - Installing Git and Creating Local Git Repository - V2
  • Урок 108. 00:03:58
    Step 06 - Connect Spring Cloud Config Server to Local Git Repository - V2
  • Урок 109. 00:04:08
    Step 07 - Connect Limits Service to Spring Cloud Config Server - V2
  • Урок 110. 00:05:48
    Step 08 - Configuring Profiles for Limits Service - V2
  • Урок 111. 00:02:54
    Debugging Guide for Microservices V2 + Docker + Docker Compose
  • Урок 112. 00:02:27
    Step 09 - Introduction to Currency Conversion & Exchange Microservices - V2
  • Урок 113. 00:04:10
    Step 10 - Setting up Currency Exchange Microservice - V2
  • Урок 114. 00:07:42
    Step 11 - Create a simple hard coded currency exchange service - V2
  • Урок 115. 00:05:40
    Step 12 - Setting up Dynamic Port in the the Response - V2
  • Урок 116. 00:10:57
    Step 13 - Configure JPA and Initialized Data - V2
  • Урок 117. 00:05:48
    Step 14 - Create a JPA Repository - V2
  • Урок 118. 00:02:26
    Step 15 - Setting up Currency Conversion Microservice - V2
  • Урок 119. 00:07:20
    Step 16 - Creating a service for currency conversion - V2
  • Урок 120. 00:07:11
    Step 17 - Invoking Currency Exchange from Currency Conversion Microservice - V2
  • Урок 121. 00:08:00
    Step 18 - Using Feign REST Client for Service Invocation - V2
  • Урок 122. 00:07:38
    Step 19 - Understand Naming Server and Setting up Eureka Naming Server - V2
  • Урок 123. 00:04:55
    Step 20 - Connect Currency Conversion & Currency Exchange Microservices - V2
  • Урок 124. 00:05:19
    Step 21 - QuickStart by Importing Microservices
  • Урок 125. 00:04:35
    Step 22 - Load Balancing with Eureka, Feign & Spring Cloud LoadBalancer - V2
  • Урок 126. 00:04:46
    Step 22 - Setting up Spring Cloud API Gateway
  • Урок 127. 00:07:15
    Step 23 - Enabling Discovery Locator with Eureka for Spring Cloud Gateway
  • Урок 128. 00:13:40
    Step 24 - Exploring Routes with Spring Cloud Gateway
  • Урок 129. 00:05:56
    Step 25 - Implementing Spring Cloud Gateway Logging Filter
  • Урок 130. 00:07:27
    Step 26 - Getting started with Circuit Breaker - Resilience4j
  • Урок 131. 00:12:07
    Step 27 - Playing with Resilience4j - Retry and Fallback Methods
  • Урок 132. 00:08:48
    Step 28 - Playing with Circuit Breaker Features of Resilience4j
  • Урок 133. 00:05:39
    Step 29 - Exploring Rate Limiting and BulkHead Features of Resilience4j - V2
  • Урок 134. 00:02:45
    Step 00 - Match made in Heaven - Docker and Microservices
  • Урок 135. 00:04:26
    Step 01 - Installing Docker - Docker - V2
  • Урок 136. 00:02:59
    Step 02 - Your First Docker Usecase - Deploy a Spring Boot Application
  • Урок 137. 00:06:19
    Step 03 - Docker Concepts - Registry, Repository, Tag, Image and Containers
  • Урок 138. 00:06:29
    Step 04 - Playing with Docker Images and Containers
  • Урок 139. 00:04:12
    Step 05 - Understanding Docker Architecture - Docker Client, Docker Engine
  • Урок 140. 00:03:03
    Step 06 - Why is Docker Popular
  • Урок 141. 00:08:27
    Step 07 - Playing with Docker Images
  • Урок 142. 00:10:29
    Step 08 - Playing with Docker Containers
  • Урок 143. 00:07:59
    Step 09 - Playing with Docker Commands - stats, system
  • Урок 144. 00:01:48
    Step 10 - Introduction to Distributed Tracing
  • Урок 145. 00:03:06
    Step 11 - Launching Zipkin Container using Docker
  • Урок 146. 00:08:58
    Step 12 - Connecting Currency Exchange Microservice with Zipkin
  • Урок 147. 00:05:56
    Step 13 - Connecting Currency Conversion Microservice & API Gateway with Zipkin
  • Урок 148. 00:04:49
    Step 14 - Getting Setup with Microservices for Creating Container Images
  • Урок 149. 00:09:37
    Step 15 - Creating Container Image for Currency Exchange Microservice
  • Урок 150. 00:06:29
    Step 16 - Getting Started with Docker Compose - Currency Exchange Microservice
  • Урок 151. 00:07:11
    Step 17 - Running Eureka Naming Server with Docker Compose
  • Урок 152. 00:04:16
    Step 18 - Running Currency Conversion Microservice with Docker Compose
  • Урок 153. 00:03:50
    Step 19 - Running Spring Cloud API Gateway with Docker Compose
  • Урок 154. 00:04:52
    Step 20 - Running Zipkin with Docker Compose
  • Урок 155. 00:07:29
    Step 21 - Running Zipkin and RabbitMQ with Docker Compose
  • Урок 156. 00:03:20
    Step 00 - Docker, Kubernetes and Microservices - Made for each other
  • Урок 157. 00:10:58
    Step 01 - Getting Started with Docker, Kubernetes and Google Kubernetes Engine
  • Урок 158. 00:03:55
    Step 02 - Creating Google Cloud Account
  • Урок 159. 00:07:21
    Step 03 - Creating Kubernetes Cluster with Google Kubernete Engine (GKE)
  • Урок 160. 00:04:12
    Step 04 - Review Kubernetes Cluster and Learn Few Fun Facts about Kubernetes
  • Урок 161. 00:11:40
    Step 05 - Deploy Your First Spring Boot Application to Kubernetes Cluster
  • Урок 162. 00:04:59
    Step 06 - Quick Look at Kubernetes Concepts - Pods, Replica Sets and Deployment
  • Урок 163. 00:06:35
    Step 07 - Understanding Pods in Kubernetes
  • Урок 164. 00:08:41
    Step 08 - Understanding ReplicaSets in Kubernetes
  • Урок 165. 00:13:52
    Step 09 - Understanding Deployment in Kubernetes
  • Урок 166. 00:03:23
    Step 10 - Quick Review of Kubernetes Concepts - Pods, Replica Sets & Deployments
  • Урок 167. 00:07:57
    Step 11 - Understanding Services in Kubernetes
  • Урок 168. 00:03:16
    Step 12 - Quick Review of GKE on Google Cloud Console
  • Урок 169. 00:08:14
    Step 13 - Understanding Kubernetes Architecture - Master Node and Nodes
  • Урок 170. 00:05:16
    Installing Gcloud
  • Урок 171. 00:02:45
    Installing Kubectl
  • Урок 172. 00:09:00
    Step 14 - Setup Currency Exchange & Conversion Microservices - Kubernetes
  • Урок 173. 00:05:40
    Step 15 - Container images for Exchange & Currency Conversion Microservices
  • Урок 174. 00:09:49
    Step 16 - Deploy Microservices to Kubernetes & Understand Service Discovery
  • Урок 175. 00:07:49
    Step 17 - Creating Declarative Configuration Kubernetes YAML for Microservices
  • Урок 176. 00:06:52
    Step 18 - Clean up Kubernetes YAML for Microservices
  • Урок 177. 00:01:42
    Step 19 - Enable Logging and Tracing APIs in Google Cloud Platform
  • Урок 178. 00:04:18
    Step 20 - Deploying Microservices using Kubernetes YAML Configuration
  • Урок 179. 00:03:47
    Step 21 - Playing with Kubernetes Declarative YAML Configuration
  • Урок 180. 00:10:04
    Step 22 - Creating Environment Variables to enable Microservice Communication
  • Урок 181. 00:06:32
    Step 23 - Understanding Centralized Configuration in Kubernetes - Config Maps
  • Урок 182. 00:05:42
    Step 24 - Exploring Centralized Logging and Monitoring in GKE
  • Урок 183. 00:07:50
    Step 25 - Exploring Microservices Deployments with Kubernetes
  • Урок 184. 00:08:48
    Step 26 - Configuring Liveness and Readiness Probes for Microservices with K8S
  • Урок 185. 00:06:31
    Step 27 - Autoscaling Microservices with Kubernetes
  • Урок 186. 00:01:03
    Step 28 - Delete Kubernetes Cluster and Thank You!
  • Урок 187. 00:01:10
    Thank You
  • Урок 188. 00:00:58
    Step 01 - Getting Started with Spring Boot - Goals
  • Урок 189. 00:05:01
    Step 02 - Setting up New Spring Boot Project with Spring Initializr
  • Урок 190. 00:07:19
    Step 03 - Build a Hello World API with Spring Boot
  • Урок 191. 00:03:10
    Step 04 - Understanding the World Before Spring Boot - 10000 Feet Overview
  • Урок 192. 00:04:15
    Step 05 - Understanding Spring Boot Magic - Spring Boot Starter Projects
  • Урок 193. 00:07:24
    Step 06 - Understanding Spring Boot Magic - Auto Configuration
  • Урок 194. 00:05:06
    Step 07 - Playing with Spring Boot
  • Урок 195. 00:05:13
    Step 08 - Understanding Spring Boot Magic - Embedded Servers
  • Урок 196. 00:06:11
    Step 09 - Exploring Spring Boot Actuator
  • Урок 197. 00:03:09
    Step 10 - Exploring Spring Boot DevTools
  • Урок 198. 00:03:09
    Step 11 - Understanding Spring Boot vs Spring vs Spring MVC
  • Урок 199. 00:00:49
    Step 12 - Getting Started with Spring Boot - Review
  • Урок 200. 00:01:25
    Step 01 - Getting Started with JPA and Hibernate - Goals
  • Урок 201. 00:06:53
    Step 02 - Setting up New Spring Boot Project for JPA and Hibernate
  • Урок 202. 00:07:25
    Step 03 - Launching up H2 Console and Creating Course Table in H2
  • Урок 203. 00:03:59
    Step 04 - Getting Started with Spring JDBC
  • Урок 204. 00:07:50
    Step 05 - Inserting Hardcoded Data using Spring JDBC
  • Урок 205. 00:09:02
    Step 06 - Inserting and Deleting Data using Spring JDBC
  • Урок 206. 00:05:37
    Step 07 - Querying Data using Spring JDBC
  • Урок 207. 00:12:24
    Step 08 - Getting Started with JPA and EntityManager
  • Урок 208. 00:03:17
    Step 09 - Exploring the Magic of JPA
  • Урок 209. 00:05:42
    Step 10 - Getting Started with Spring Data JPA
  • Урок 210. 00:05:12
    Step 11 - Exploring features of Spring Data JPA
  • Урок 211. 00:05:01
    Step 12 - Understanding difference between Hibernate and JPA
  • Урок 212. 00:01:22
    Step 00 - Introduction to Functional Programming - Overview
  • Урок 213. 00:06:24
    Step 01 - Getting Started with Functional Programming with Java
  • Урок 214. 00:05:40
    Step 02 - Writing Your First Java Functional Program
  • Урок 215. 00:08:08
    Step 03 - Improving Java Functional Program with filter
  • Урок 216. 00:05:18
    Step 04 - Using Lambda Expression to enhance your Functional Program
  • Урок 217. 00:05:31
    Step 05 - Do Functional Programming Exercises with Streams, Filters and Lambdas
  • Урок 218. 00:05:55
    Step 06 - Using map in Functional Programs - with Exercises
  • Урок 219. 00:07:15
    Step 07 - Understanding Optional class in Java
  • Урок 220. 00:03:15
    Step 08 - Quick Review of Functional Programming Basics