1. Урок 1. 00:07:24
    Course Overview
  2. Урок 2. 00:03:30
    A few suggestions
  3. Урок 3. 00:07:12
    What is a Microservice?
  4. Урок 4. 00:07:21
    Sample Microservices Architecture
  5. Урок 5. 00:02:10
    Download and Install Postman HTTP Client
  6. Урок 6. 00:10:42
    Postman Overview
  7. Урок 7. 00:11:13
    Resource and Collection URIs
  8. Урок 8. 00:03:45
    HTTP Methods: GET, POST, DELETE and PUT
  9. Урок 9. 00:04:13
    HTTP Headers: Accept and Content Type
  10. Урок 10. 00:05:49
    Install Java Platform(JDK)
  11. Урок 11. 00:01:56
    Download and Install Spring Tool Suite(STS)
  12. Урок 12. 00:00:42
    Introduction
  13. Урок 13. 00:06:13
    Creating a New Project
  14. Урок 14. 00:04:43
    Creating a new Spring project using Spring Boot Initializr
  15. Урок 15. 00:02:46
    Create Users Rest Controller class
  16. Урок 16. 00:03:14
    Adding Methods to Handle POST, GET, PUT, DELETE HTTP requests
  17. Урок 17. 00:04:37
    Running Web Service Application
  18. Урок 18. 00:03:32
    Reading Path Variables with @PathVariable annotaion
  19. Урок 19. 00:04:52
    Reading Query String Request Parameters
  20. Урок 20. 00:04:36
    Making Parameters Optional or Required
  21. Урок 21. 00:04:12
    Returning Java Object as Return Value
  22. Урок 22. 00:05:36
    Returning Object as JSON or XML Representation
  23. Урок 23. 00:04:59
    Set Response Status Code
  24. Урок 24. 00:08:14
    Reading HTTP POST Request Body. The @RequestBody annotation.
  25. Урок 25. 00:08:57
    Validating HTTP POST Request Body
  26. Урок 26. 00:04:51
    Store Users Temporary
  27. Урок 27. 00:09:07
    Handle HTTP PUT Request
  28. Урок 28. 00:04:53
    Handle HTTP Delete Request
  29. Урок 29. 00:07:45
    Handle an Exception
  30. Урок 30. 00:05:36
    Return Custom Error Message Object
  31. Урок 31. 00:03:07
    Handle a Specific Exception
  32. Урок 32. 00:04:14
    Throw and Handle You Own Custom Exception
  33. Урок 33. 00:02:55
    Catch More Than One Exception with One Method
  34. Урок 34. 00:10:55
    Dependency Injection: Create and Autowire a Service Layer Class
  35. Урок 35. 00:06:25
    Constructor Based Dependency Injection
  36. Урок 36. 00:04:53
    Run Web Service as a Standalone Application
  37. Урок 37. 00:04:18
    Introduction to Eureka Discovery Service
  38. Урок 38. 00:05:40
    Startup Eureka Service Discovery
  39. Урок 39. 00:02:11
    Introduction to Building a Users Microservice
  40. Урок 40. 00:03:41
    Users Microservice - Create new Spring Boot Project
  41. Урок 41. 00:03:02
    Enable Spring Discovery Cloud Client
  42. Урок 42. 00:02:05
    Create Users Rest Controller
  43. Урок 43. 00:03:00
    Access Users Web Service Endpoint via Eureka Discovery Service
  44. Урок 44. 00:01:35
    Introduction to Building an Account Management Microservice
  45. Урок 45. 00:04:00
    Password Reset - Create a new Spring Boot Project
  46. Урок 46. 00:02:57
    Access Account Management Microservice via Eureka Discovery Service
  47. Урок 47. 00:01:49
    Important note
  48. Урок 48. 00:03:25
    Introduction to Zuul API Gateway
  49. Урок 49. 00:03:38
    Create a ZUUL API Gateway Project
  50. Урок 50. 00:04:15
    Access Microservices via API Gateway
  51. Урок 51. 00:00:51
    Load Balancer - Introduction
  52. Урок 52. 00:08:59
    Starting Up More Microservices
  53. Урок 53. 00:04:48
    Trying How Load Balancer Works
  54. Урок 54. 00:01:44
    Important Note
  55. Урок 55. 00:06:28
    Introduction
  56. Урок 56. 00:05:05
    Creating API Gateway Project
  57. Урок 57. 00:06:50
    Automatic Mapping of Gateway Routes
  58. Урок 58. 00:07:50
    Manually Configuring API Gateway Routes
  59. Урок 59. 00:04:09
    Trying how it works
  60. Урок 60. 00:05:07
    Rewriting URL Path
  61. Урок 61. 00:01:58
    Automatic & Manual Routing
  62. Урок 62. 00:08:59
    Starting Up More Microservices
  63. Урок 63. 00:03:54
    Trying How Load Balancer Works
  64. Урок 64. 00:03:20
    H2 In-memory Database. Introduction.
  65. Урок 65. 00:07:41
    H2 Database Console Overview
  66. Урок 66. 00:04:41
    Adding Support for the H2 Database
  67. Урок 67. 00:00:42
    Introduction
  68. Урок 68. 00:01:15
    Adding method to handle HTTP Post Request
  69. Урок 69. 00:03:18
    Implementing the Create User Request Model class
  70. Урок 70. 00:04:21
    Validating HTTP Request Body
  71. Урок 71. 00:02:49
    Application Layers
  72. Урок 72. 00:02:11
    Implementing Service Layer Class
  73. Урок 73. 00:03:16
    Create a Shared DTO Class
  74. Урок 74. 00:02:17
    Generate Unique Public User Id
  75. Урок 75. 00:02:02
    Adding Support for Spring Data JPA
  76. Урок 76. 00:06:08
    Implementing User Entity Class
  77. Урок 77. 00:02:35
    Implementing Spring Data JPA CRUD Repository
  78. Урок 78. 00:11:16
    Save User Details in Database
  79. Урок 79. 00:02:30
    Return Http Status Code
  80. Урок 80. 00:04:31
    Implementing Create User Response Model
  81. Урок 81. 00:01:16
    Add Spring Security to Users Microservice
  82. Урок 82. 00:04:13
    Add WebSecurity Configuration
  83. Урок 83. 00:04:51
    Encrypt User Password
  84. Урок 84. 00:02:16
    Allow only IP address of Zuul API Gateway
  85. Урок 85. 00:05:00
    Adding Support to Return JSON or XML
  86. Урок 86. 00:01:11
    Introduction
  87. Урок 87. 00:01:22
    Implementing LoginRequestModel
  88. Урок 88. 00:06:04
    AuthenticationFilter. Implementing attemptAuthentication()
  89. Урок 89. 00:11:38
    Implementing loadUserByUserName()
  90. Урок 90. 00:13:13
    AuthenticationFilter. Implementing successfulAuthentication().
  91. Урок 91. 00:05:46
    Trying How User Login Works
  92. Урок 92. 00:03:31
    Customize User Authentication URL
  93. Урок 93. 00:01:54
    Introduction to Spring Security on API Gateway
  94. Урок 94. 00:01:18
    Adding Support for Spring Security and JWT Tokens
  95. Урок 95. 00:04:30
    Enable Web Security in Zuul
  96. Урок 96. 00:05:07
    Allow Access to Registration and Login Urls
  97. Урок 97. 00:08:44
    Implementing Authorization Filter
  98. Урок 98. 00:05:23
    Accessing Protected Microservices with Access Token
  99. Урок 99. 00:03:11
    Introduction
  100. Урок 100. 00:04:05
    Using Header Predicate
  101. Урок 101. 00:01:52
    Adding Support for JWT Token Validation
  102. Урок 102. 00:03:50
    Creating AuthorizationFilter class
  103. Урок 103. 00:01:13
    Assign Custom Filter to a Gateway Route
  104. Урок 104. 00:03:06
    Signup and Login Routes
  105. Урок 105. 00:07:43
    Reading Authorization HTTP Header
  106. Урок 106. 00:07:28
    Validating JWT Access Token
  107. Урок 107. 00:06:40
    Accessing Protected Microservices with Access Token
  108. Урок 108. 00:04:04
    Introduction to Spring Cloud Config Server
  109. Урок 109. 00:02:54
    Create Your Own Config Server
  110. Урок 110. 00:02:25
    Create Private GitHub Repository
  111. Урок 111. 00:02:33
    Naming Property Files Served by Config Server
  112. Урок 112. 00:02:47
    Configure Config Server to Access Private GitHub Repository
  113. Урок 113. 00:03:17
    Adding Properties File to Git Repository
  114. Урок 114. 00:07:23
    Configure Users Microservice to be a Client of Config Server
  115. Урок 115. 00:02:19
    Make Zuul Gateway a Client of Config Server
  116. Урок 116. 00:03:53
    Introduction to Spring Cloud Bus
  117. Урок 117. 00:02:28
    Add Spring Cloud Bus & Actuator Dependencies
  118. Урок 118. 00:01:48
    Enable the /bus-refresh URL Endpoint
  119. Урок 119. 00:03:21
    Download and Run Rabbit MQ
  120. Урок 120. 00:02:16
    Rabbit MQ Default Connection Details
  121. Урок 121. 00:08:38
    Trying how Spring Cloud Bus Works
  122. Урок 122. 00:03:30
    Change default Rabbit MQ Password
  123. Урок 123. 00:00:46
    Introduction to Spring Cloud Config File System as a Backend
  124. Урок 124. 00:04:52
    Setting up File System Backend
  125. Урок 125. 00:01:42
    Previewing Values Returned by Config Server
  126. Урок 126. 00:02:39
    Trying how Microservices work
  127. Урок 127. 00:02:32
    Introduction
  128. Урок 128. 00:07:02
    Shared and a Microservice specific properties
  129. Урок 129. 00:02:16
    Introduction to Spring Boot Actuator
  130. Урок 130. 00:05:00
    Add Spring Boot Actuator to API Gateway
  131. Урок 131. 00:05:03
    Trying How It Works
  132. Урок 132. 00:05:52
    Enable Actuator for Users Microservice
  133. Урок 133. 00:01:01
    Introduction
  134. Урок 134. 00:03:17
    Download and Install MySQL
  135. Урок 135. 00:06:15
    Start MySQL Server and Login
  136. Урок 136. 00:06:26
    Create MySQL Database And a New User
  137. Урок 137. 00:03:03
    Downloading and Installing MySQL Workbench
  138. Урок 138. 00:05:27
    Connect to MySQL Database using MySQL WorkBench
  139. Урок 139. 00:04:16
    MySQL WorkBench brief overview
  140. Урок 140. 00:09:49
    Configure MySQL Database Access Details
  141. Урок 141. 00:02:49
    Use H2 Console to Access MySQL Database
  142. Урок 142. 00:01:41
    Copy MySQL properties to a Config Server
  143. Урок 143. 00:02:44
    Introduction to Encryption and Decryption of Configuration Properties
  144. Урок 144. 00:06:15
    Add Java Cryptography Extension
  145. Урок 145. 00:08:51
    Symmetric Encryption of Properties
  146. Урок 146. 00:05:06
    Creating a Keystore for Asymmetric Encryption
  147. Урок 147. 00:05:26
    Asymmetric Encryption of Properties
  148. Урок 148. 00:03:49
    Introduction to Microservices Communication
  149. Урок 149. 00:02:12
    Clone Source Code of Albums Microservice
  150. Урок 150. 00:05:38
    A walk through an Albums Microservice
  151. Урок 151. 00:05:44
    Implementing Get User Details
  152. Урок 152. 00:10:26
    Make Users Microservice call Albums Microservice
  153. Урок 153. 00:04:00
    Trying how it works
  154. Урок 154. 00:01:33
    Feign Web Service Client - Introduction
  155. Урок 155. 00:01:55
    Enable Feign in Spring Boot Project
  156. Урок 156. 00:05:08
    Create Feign Client
  157. Урок 157. 00:01:48
    Using Feign Client
  158. Урок 158. 00:03:12
    Trying How Feign Client Works
  159. Урок 159. 00:05:42
    Enable HTTP Requests Logging in Feign Client
  160. Урок 160. 00:04:37
    Handle FeignException
  161. Урок 161. 00:12:58
    Handle Response Errors with Feign Error Decoder
  162. Урок 162. 00:02:56
    Hystrix Circuit Breaker & Feign. Introduction.
  163. Урок 163. 00:04:29
    Configure Project to use Hystrix Circuit Breaker
  164. Урок 164. 00:03:11
    Trying How Hystrix Circuit Breaker & Feign work
  165. Урок 165. 00:11:06
    Error Handling with Feign Hystrix FallbackFactory
  166. Урок 166. 00:03:08
    Introduction to Distributed Tracing with Sleuth and Zipkin
  167. Урок 167. 00:04:13
    Add Spring Cloud Sleuth to Users Microservice
  168. Урок 168. 00:05:27
    Checking Trace ID and Span ID in a Console
  169. Урок 169. 00:02:19
    Startup Zipkin Server
  170. Урок 170. 00:05:15
    View Traces in Zipkin
  171. Урок 171. 00:02:05
    Introduction to Aggregating Log Files with ELK Stack
  172. Урок 172. 00:02:56
    Configure Microservices to Log into a File
  173. Урок 173. 00:01:40
    Download Logstash
  174. Урок 174. 00:09:12
    Configure Logstash to Read Log Files
  175. Урок 175. 00:03:17
    Download and Run Elasticsearch
  176. Урок 176. 00:06:51
    Run Search Query
  177. Урок 177. 00:03:45
    Download, Install and Run Kibana
  178. Урок 178. 00:05:28
    View Aggregated Logs in Kibana
  179. Урок 179. 00:02:16
    Configure Spring Security to Eureka Server
  180. Урок 180. 00:02:41
    Enable Web Security
  181. Урок 181. 00:03:11
    Configure Eureka Clients to use Username and Password
  182. Урок 182. 00:04:20
    Configure Eureka Service URL in Config Server
  183. Урок 183. 00:04:01
    Move Username and Password to Config Server
  184. Урок 184. 00:06:04
    Encrypting Username and Password
  185. Урок 185. 00:08:00
    Introduction to Running Microservices in Docker Containers
  186. Урок 186. 00:14:57
    Start up a new Linux Server on AWS EC2
  187. Урок 187. 00:04:47
    Connect to EC2 Instance
  188. Урок 188. 00:01:52
    Install Docker on AWS EC2
  189. Урок 189. 00:01:58
    Docker Hub Introduction
  190. Урок 190. 00:09:13
    Run RabbitMQ Docker Container
  191. Урок 191. 00:06:50
    Basic Docker Commands: Run, Stop, Start, Remove Containers and Images
  192. Урок 192. 00:09:49
    Create Config Server Docker Image
  193. Урок 193. 00:04:28
    Publish Config Server Docker Image to Docker Hub
  194. Урок 194. 00:10:28
    Run Config Server on EC2 from Docker Hub
  195. Урок 195. 00:03:24
    Start New EC2 Instance for Eureka
  196. Урок 196. 00:04:02
    Build Docker Image for Eureka Discovery Service
  197. Урок 197. 00:11:21
    Run Eureka in Docker container
  198. Урок 198. 00:04:42
    Elastic IP address for EC2 Instance
  199. Урок 199. 00:04:42
    Create Zuul Api Gateway Docker Image
  200. Урок 200. 00:08:04
    Run Zuul Api Gateway in Docker Container
  201. Урок 201. 00:05:56
    Run Elastic Search in Docker container
  202. Урок 202. 00:06:35
    Run Kibana in Docker Container
  203. Урок 203. 00:04:32
    Run Kibana and Elastic Search on the same Network
  204. Урок 204. 00:04:28
    Docker Image for Albums Microservice
  205. Урок 205. 00:10:50
    Run Albums Microservice Docker Image on EC2
  206. Урок 206. 00:08:51
    Logstash Docker Image for Albums Microservice
  207. Урок 207. 00:04:35
    Run Logstash in Docker container
  208. Урок 208. 00:08:38
    Run MySQL in Docker Container
  209. Урок 209. 00:03:20
    Make MySQL Docker Container Persist Data on EC2
  210. Урок 210. 00:04:23
    Build Users Microservice Docker Image
  211. Урок 211. 00:10:00
    Run Users Microservice in Docker container
  212. Урок 212. 00:07:52
    Run Logstash for Users Microservice
  213. Урок 213. 00:05:10
    Introduction
  214. Урок 214. 00:08:32
    Preparing Configuration for another environment
  215. Урок 215. 00:11:33
    Creating Beans Based on Spring Boot @Profile used
  216. Урок 216. 00:01:03
    Running Docker Container for Different Environments
  217. Урок 217. 00:06:31
    Introduction
  218. Урок 218. 00:01:23
    Pass Authorization Header to Downstream Microservice
  219. Урок 219. 00:06:02
    Add AuthorizationFilter to Users Microservice
  220. Урок 220. 00:02:31
    Configure HttpSecurity
  221. Урок 221. 00:03:12
    Trying how it works
  222. Урок 222. 00:04:56
    Introduction to Method-Level security
  223. Урок 223. 00:02:01
    Enable Method-Level Security
  224. Урок 224. 00:03:31
    @PreAuthorize annotation example
  225. Урок 225. 00:03:03
    Trying how @PreAuthorize annotation works
  226. Урок 226. 00:07:12
    @PostAuthorize annotation example