Урок 1. 00:04:27
Course Introduction
Урок 2. 00:01:31
Quick Overview of Spring Framework
Урок 3. 00:02:15
Create and Setup Spring Application in IntelliJ IDEA
Урок 4. 00:11:48
Understanding Tightly Coupling and Loose Coupling
Урок 5. 00:05:46
Spring IOC Container - Theory
Урок 6. 00:06:33
Steps for Java Based Configuration
Урок 7. 00:13:09
Spring IOC Container - Example
Урок 8. 00:02:51
Summary - How Spring IOC Container Works
Урок 9. 00:08:07
Steps for Annotation Based Configuration
Урок 10. 00:10:40
Annotation Based Configuration Example
Урок 11. 00:05:45
@Qualifier and @Primary Annotations
Урок 12. 00:09:09
Stereotype Annotations - @Controller, @Service and @Repository
Урок 13. 00:05:41
Difference Between Java Based and Annotation Based Configuration
Урок 14. 00:05:08
What is Dependency Injection
Урок 15. 00:08:53
Example - Without Dependency Injection
Урок 16. 00:07:34
Example - Dependency Injection using Spring Framework
Урок 17. 00:08:10
Constructor Based Dependency Injection
Урок 18. 00:06:18
Setter Based Dependency Injection
Урок 19. 00:06:00
When to Use Construction Injection and Setter Injection?
Урок 20. 00:04:16
Why Constructor Injection is Recommended?
Урок 21. 00:06:59
Field Based Dependency Injection
Урок 22. 00:11:17
@Bean Annotation In-Depth
Урок 23. 00:05:26
@Bean Annotation - initMethod and destroyMethod Attributes
Урок 24. 00:02:51
Assignment - Sending an Email
Урок 25. 00:10:19
Assignment Solution 1 - Using Annotation Based Configuration
Урок 26. 00:04:11
Assignment Solution 2 - Using Java Based Configuration
Урок 27. 00:07:10
What is Spring Boot?
Урок 28. 00:08:03
Spring Boot Features
Урок 29. 00:06:46
Creating Your First Spring Boot Project
Урок 30. 00:06:56
Understanding Spring Boot Project Structure
Урок 31. 00:10:24
Spring Boot Starters Feature
Урок 32. 00:07:54
Spring Boot Starter Parent
Урок 33. 00:04:11
Spring Boot Auto Configuration Feature - Theory
Урок 34. 00:10:14
Spring Boot Auto Configuration Feature - In an Action
Урок 35. 00:10:14
Understanding @SpringBootApplication Annotation
Урок 36. 00:08:16
How Spring Boot Works Internally
Урок 37. 00:01:49
Section Introduction
Урок 38. 00:05:53
Create Spring Boot Project using Spring Initializr and Import in IntelliJ IDE
Урок 39. 00:07:22
Create Simple Spring Boot REST API
Урок 40. 00:05:40
Spring Boot REST API That Returns Java Bean as JSON
Урок 41. 00:03:53
Create Spring Boot REST API returns List in JSON Format
Урок 42. 00:07:59
Spring Boot REST API with Path Variable - @PathVariable
Урок 43. 00:06:42
Spring Boot REST API with Request Param - @RequestParam
Урок 44. 00:09:22
Spring Boot POST REST API - @PostMapping and @RequestBody
Урок 45. 00:09:06
Spring Boot PUT REST API - @PutMapping and @RequestBody
Урок 46. 00:04:48
Spring Boot DELETE REST API - @DeleteMapping
Урок 47. 00:09:40
Using Spring ResponseEntity to Manipulate the HTTP Response
Урок 48. 00:05:32
Define Base URL for REST API’s in Spring MVC Controller - @RequestMapping
Урок 49. 00:01:50
Section Introduction
Урок 50. 00:06:01
Create and Setup Spring Boot Project in IntelliJ
Урок 51. 00:05:31
Configure MySQL Database in Spring Boot App
Урок 52. 00:06:52
Create User JPA Entity
Урок 53. 00:06:21
Create Spring Data JPA Repository - UserRepository
Урок 54. 00:13:36
Build Create User REST API
Урок 55. 00:08:15
Build Get User By ID REST API
Урок 56. 00:05:29
Build Get All Users REST API
Урок 57. 00:10:13
Build Update User REST API
Урок 58. 00:05:05
Build Delete User REST API
Урок 59. 00:04:08
Understanding DTO Pattern
Урок 60. 00:05:18
How to Use DTO in Spring Boot Project
Урок 61. 00:10:16
Refactor Create User REST API to use DTO
Урок 62. 00:05:21
Create and Use UserMapper Class
Урок 63. 00:03:43
Refactor Get User By Id REST API to use DTO
Урок 64. 00:03:45
Refactor Get All Users REST API to use DTO
Урок 65. 00:04:31
Refactor Update User REST API to use DTO
Урок 66. 00:04:31
ModelMapper and MapStruct Libraries Overview
Урок 67. 00:13:25
Using ModelMapper Library to Map Entity to DTO and Vice Versa
Урок 68. 00:04:34
Using MapStruct Library: Step 1 - Add Maven Dependencies
Урок 69. 00:05:08
Using MapStruct Library: Step 2 - Create Mapper
Урок 70. 00:07:11
Using MapStruct Library: Step 3 - Using Mapper and Test CRUD REST API's
Урок 71. 00:04:25
Spring Boot REST API Exception Handling Overview 1
Урок 72. 00:02:19
Spring Boot REST API Exception Handling Overview 2
Урок 73. 00:13:08
How to Create and Use Custom Exception - ResourceNotFoundException
Урок 74. 00:10:35
Handing Specific Custom Exception - ResourceNotFoundException
Урок 75. 00:08:39
Handing Specific Custom Exception - EmailAlreadyExistsException
Урок 76. 00:03:58
Spring Boot REST API Global Exception Handling
Урок 77. 00:04:13
Validation with Spring Boot - Overview
Урок 78. 00:06:34
Validate Create and Update User REST API Requests
Урок 79. 00:11:46
Customizing Validation Error Response
Урок 80. 00:01:21
Actuator Section Overview
Урок 81. 00:04:22
Adding Actuator to Spring Boot App
Урок 82. 00:03:31
The /info Endpoint
Урок 83. 00:02:29
The /health Endpoint
Урок 84. 00:03:16
The /beans Endpoint
Урок 85. 00:02:39
The /conditions Endpoint
Урок 86. 00:03:38
The /mappings Endpoint
Урок 87. 00:02:35
The /configprops Endpoint
Урок 88. 00:05:12
The /metrics Endpoint
Урок 89. 00:03:47
The /env & /threaddump Endpoints
Урок 90. 00:04:40
The /loggers Endpoint
Урок 91. 00:03:04
The /shutdown Endpoint
Урок 92. 00:04:01
Section Overview and Demo
Урок 93. 00:08:28
Generate REST API Documentation using SpringDoc OpenAPI
Урок 94. 00:06:18
Define General API Information using Annotations
Урок 95. 00:11:53
Customizing Swagger API Documentation with Annotations
Урок 96. 00:02:09
Todo Management Project - Understanding Requirements
Урок 97. 00:05:10
Create and Setup Spring Boot Project in IntelliJ IDEA
Урок 98. 00:05:28
Configure MySQL Database in Spring Boot Application
Урок 99. 00:05:55
Create Todo JPA Entity
Урок 100. 00:08:00
Create TodoRepository and TodoDto
Урок 101. 00:13:41
Build Add Todo REST API
Урок 102. 00:07:07
Using ModelMapper Library
Урок 103. 00:10:40
Build Get Todo REST API
Урок 104. 00:06:50
Build Get All Todos REST API
Урок 105. 00:11:00
Build Update Todo REST API
Урок 106. 00:06:24
Build Delete Todo REST API
Урок 107. 00:08:16
Build Complete Todo API
Урок 108. 00:06:34
Build In Complete Todo REST API
Урок 109. 00:01:08
Section Overview
Урок 110. 00:04:11
Authentication and Authorization
Урок 111. 00:04:13
Adding Spring Security to Spring Boot Project (Todo Management)
Урок 112. 00:09:22
Spring Boot Auto Configuration for Spring Security
Урок 113. 00:03:59
Customizing the Default User
Урок 114. 00:09:07
Configure and Understand Basic Authentication
Урок 115. 00:06:36
In-Memory Authentication
Урок 116. 00:15:30
Understanding Role-Based Autherization
Урок 117. 00:11:42
Method Level Security
Урок 118. 00:10:48
Creating User and Role JPA Entities
Урок 119. 00:04:29
Creating UserRepository and RoleRepository
Урок 120. 00:08:05
Creating CustomUserDetailsService Class Implements UserDetailsService
Урок 121. 00:09:11
How Database Authentication Works in Spring Security
Урок 122. 00:12:49
Spring Security Database Authentication
Урок 123. 00:01:14
Module Introduction - What you will learn in this section?
Урок 124. 00:07:01
Transaction Management with Spring Data JPA
Урок 125. 00:03:18
Use Case - Placing Order on eCommerce Shopping Website
Урок 126. 00:06:44
Create and Setup Spring Boot Project in IntelliJ
Урок 127. 00:05:20
Configure MySQL Database
Урок 128. 00:08:11
Create Order and Payment JPA Entities
Урок 129. 00:02:28
Create OrderRepository and PaymentRepository Interfaces
Урок 130. 00:02:28
Create OrderRequest and OrderResponse DTO Classes
Урок 131. 00:09:35
Create Service Layer
Урок 132. 00:06:37
Create Place Order REST API and Test using Postman
Урок 133. 00:06:33
Handle Transaction using Spring @Transactional Annotation
Урок 134. 00:06:12
Create Spring Boot Project
Урок 135. 00:05:21
Configure MySQL Database
Урок 136. 00:04:45
Create Product JPA Entity
Урок 137. 00:02:31
Create ProductRepository Interface
Урок 138. 00:05:25
Create JPQL and Native SQL Queries to Search Products
Урок 139. 00:03:03
Create Service Layer
Урок 140. 00:10:10
Build Search REST API and Test using Postman
Урок 141. 00:03:25
What is ORM?
Урок 142. 00:05:39
What is JPA?
Урок 143. 00:04:04
What is Hibernate?
Урок 144. 00:02:47
JPA vs Hibernate
Урок 145. 00:03:46
What is Spring Data JPA?
Урок 146. 00:04:47
Hibernate vs Spring Data JPA
Урок 147. 00:03:49
Basic Flow of Spring Data JPA
Урок 148. 00:06:35
Create and Setup Spring Boot Project in IntelliJ IDEA
Урок 149. 00:04:18
Understanding Spring Boot Starter Data JPA Dependency
Урок 150. 00:11:17
Connect Spring Boot Project with MySQL Database
Урок 151. 00:08:04
Create Product Entity with @Entity and @Id
Урок 152. 00:12:00
Using JPA Annotations - @Table, @Column, @GeneratedValue and @UniqueConstraint
Урок 153. 00:14:24
Primary key generation strategies - AUTO, IDENTITY, SEQUENCE and TABLE
Урок 154. 00:02:36
Adding Hibernate annotations - @CreationTimestampВ andВ @UpdateTimestamp
Урок 155. 00:04:46
Using Lombok Library to Reduce Boilerplate Code
Урок 156. 00:08:16
Understanding Spring Data JPA Repository Interfaces and it’s Hierarchy
Урок 157. 00:07:32
Decompile Spring Data JPA Library to Understand Repository Interfaces
Урок 158. 00:06:03
Steps to Create Spring Data JPA Repository - ProductRepository
Урок 159. 00:03:51
Overview of Spring Data JPA Repository Methods
Урок 160. 00:12:16
save() - Save an Entity to the Database Table
Урок 161. 00:06:24
save() - Update an Entity to the Database Table
Урок 162. 00:03:55
findById() - Retrieve a Single Entity from the Database
Урок 163. 00:06:19
saveAll() - Save Multiple Entities to the Database Table
Урок 164. 00:04:15
findAll() - Retrieve All the Entities From the Database Table
Урок 165. 00:03:44
deleteById() - Delete a Single Entity from the Database
Урок 166. 00:07:06
delete() - Delete an Entity From the Database Table
Урок 167. 00:10:01
deleteAll() - Delete All the Entities From the Database Table
Урок 168. 00:03:32
count() - Get the Number of Records in the Database Table
Урок 169. 00:05:46
existsById() - Check if Entity Exists With Given ID in the Database Table
Урок 170. 00:02:44
Overview of Creating Query Methods From Method Names Strategy
Урок 171. 00:05:09
How Query Generation From Method Names Works Behind the Scene
Урок 172. 00:12:44
Understanding Rules and Supported Keywords to Create Query Methods
Урок 173. 00:13:14
Spring Data JPA Query Method - Find by Single Field Name
Урок 174. 00:12:40
Spring Data JPA Query Method - Find by Multiple Field Names
Урок 175. 00:04:42
Spring Data JPA Query Method - Find by Distinct
Урок 176. 00:05:49
Spring Data JPA Query Method - Find by GreaterThan
Урок 177. 00:05:02
Spring Data JPA Query Method - Find by LessThan
Урок 178. 00:05:12
Spring Data JPA Query Method - Find by Containing
Урок 179. 00:05:44
Spring Data JPA Query Method - Find by Like
Урок 180. 00:06:17
Spring Data JPA Query Method - Find by Between (Price Range Example)
Урок 181. 00:08:49
Spring Data JPA Query Method - Find by Between (Date Range Example)
Урок 182. 00:05:28
Spring Data JPA Query Method - Find by In
Урок 183. 00:07:03
Spring Data JPA Query Method - Limiting Query Results
Урок 184. 00:03:33
What is Spring MVC?
Урок 185. 00:03:23
What is DispatcherServlet?
Урок 186. 00:08:31
Spring MVC Components
Урок 187. 00:03:18
How Spring MVC Works Internally
Урок 188. 00:01:48
Spring Boot Web MVC Architecture (Three - Layer Architecture)
Урок 189. 00:04:05
What is Thymeleaf?
Урок 190. 00:02:34
How Thymeleaf Engine Works?
Урок 191. 00:05:34
Create Spring Boot Project and Integrate Thymeleaf
Урок 192. 00:03:48
Spring Boot Auto Configuration for Thymeleaf
Урок 193. 00:08:02
Thymeleaf Hello World Example
Урок 194. 00:12:03
Thymeleaf Variable Expressions
Урок 195. 00:08:20
Thymeleaf Selection Expressions
Урок 196. 00:06:58
Thymeleaf Message Expressions
Урок 197. 00:10:21
Thymeleaf Link (URL) Expressions
Урок 198. 00:11:45
Thymeleaf Fragment Expressions
Урок 199. 00:02:55
Thymeleaf Basic Attribute - th:text
Урок 200. 00:11:49
Thymeleaf Loop or Iteration - th:each
Урок 201. 00:05:21
Thymeleaf Looping or Iteration - th:each Attribute Status Variable
Урок 202. 00:09:56
Thymeleaf Attribute - th:if and th:unless
Урок 203. 00:08:37
Thymeleaf Attribute - th:switch and th:case
Урок 204. 00:03:49
Form Handling in Thymeleaf Overview
Урок 205. 00:06:35
Form Handling in Thymeleaf - Create Handler Method to Return Register Page
Урок 206. 00:15:48
Form Handling in Thymeleaf Template - Design User Registration Form
Урок 207. 00:08:37
Form Handling in Thymeleaf Template - Display User Registration Form Data
Урок 208. 00:06:22
Create and Setup Spring Boot Project in IntelliJ
Урок 209. 00:04:46
Understanding spring-boot-starter-thymeleaf Dependency
Урок 210. 00:06:42
Configure MySQL Database in Spring Boot App
Урок 211. 00:06:23
Create Student JPA Entity
Урок 212. 00:06:45
Create StudentRepository Interface
Урок 213. 00:05:49
Create StudentDto and StudentMapper
Урок 214. 00:10:09
List Students Feature Backend
Урок 215. 00:15:43
List Students Feature Frontend
Урок 216. 00:04:15
Create Student Feature - Create Handler Method for Student Form
Урок 217. 00:12:07
Create Student Feature - Create Student Form Handling
Урок 218. 00:07:48
Create Student Feature - Create Handler Method for Save Student
Урок 219. 00:10:34
Create Student Feature - Create Student Form Validation
Урок 220. 00:08:37
Update Student Feature Backend
Урок 221. 00:11:44
Update Student Feature Frontend
Урок 222. 00:07:14
Delete Student Feature Implementation
Урок 223. 00:05:23
View Student Feature Backend
Урок 224. 00:08:23
View Student Feature Frontend
Урок 225. 00:05:42
Create and Setup Spring Boot Project in IntelliJ
Урок 226. 00:04:46
Understanding spring-boot-starter-thymeleaf Dependency
Урок 227. 00:04:46
Configure MySQL Database in Spring Boot App
Урок 228. 00:14:52
Create User and Role Entities (Many to Many Mapping)
Урок 229. 00:05:05
Create UserRepository and RoleRepository
Урок 230. 00:07:32
Create Thymeleaf Template for Home Page
Урок 231. 00:05:20
Create Handler Method to Handle Registration Form Request
Урок 232. 00:14:47
User Registration Form Handling
Урок 233. 00:13:34
Create Handler Method to Save User Registered Data
Урок 234. 00:12:27
Adding Validation to User Registration Form
Урок 235. 00:06:05
Display List Registered Users - Backend
Урок 236. 00:08:18
Display List Registered Users - Frontend
Урок 237. 00:09:19
Add Spring Security & Use Spring Security’s Default Login and Logout Features
Урок 238. 00:16:28
Create Custom Login Form and Configure Spring Security
Урок 239. 00:06:18
Logout Feature Implementation
Урок 240. 00:04:35
Configure URL’s in Spring Security
Урок 241. 00:12:57
Database Authentication Implementation
Урок 242. 00:09:23
Introduction to Reactive Programming
Урок 243. 00:04:31
Reactive Stream Specifications
Урок 244. 00:04:03
Reactive Stream Workflow
Урок 245. 00:13:08
Understanding Project Reactor Mono and Flux
Урок 246. 00:04:02
Spring WebFlux Overview
Урок 247. 00:02:26
Spring Boot WebFlux Application Architecture
Урок 248. 00:06:04
Deploy MongoDB in Docker Container
Урок 249. 00:06:38
Create and Set up Spring Boot Project in IntelliJ IDE
Урок 250. 00:04:48
Create Employee Entity
Урок 251. 00:05:14
Create EmployeeRepository and Understanding Internals
Урок 252. 00:04:04
Create EmployeeDto and EmployeeMapper
Урок 253. 00:13:55
Build Reactive Add Employee REST API
Урок 254. 00:06:35
Build Reactive Get Employee REST API
Урок 255. 00:05:52
Build Reactive Get All Employees REST API
Урок 256. 00:09:30
Build Reactive Update Employee REST API
Урок 257. 00:05:57
Build Reactive Delete Employee REST API
Урок 258. 00:11:05
Write a Integration Test for Add Employee REST API
Урок 259. 00:06:49
Write a Integration Test for Get Employee REST API
Урок 260. 00:06:14
Write a Integration Test for Get All Employees REST API
Урок 261. 00:04:03
Refactor the Code to Use @BeforeEach Annotation
Урок 262. 00:07:30
Write a Integration Test for Update Employee REST API
Урок 263. 00:03:43
Write a Integration Test for Delete Employee REST API
Урок 264. 00:03:34
General Docker Workflow
Урок 265. 00:05:27
Create Spring Boot Project and Build Simple REST API
Урок 266. 00:06:14
Create Dockerfile to Build Docker Image
Урок 267. 00:06:09
Build Docker Image from Dockerfile
Урок 268. 00:07:23
Run Docker Image in a Docker Container
Урок 269. 00:07:47
Push Docker Image to DockerHub
Урок 270. 00:07:55
Pulll Docker Image from DockerHub
Урок 271. 00:01:23
Dockerizing Spring Boot MySQL Application Overview
Урок 272. 00:07:42
Pull and Run MySQL Image in a Docker Container
Урок 273. 00:06:12
Create a Dockerfile to Build the Image
Урок 274. 00:08:23
Implement Profile and Build Docker image
Урок 275. 00:08:10
Run Spring Boot App Docker Image in a Container and Test CRUD REST APIs
Урок 276. 00:04:02
Docker Compose Overview
Урок 277. 00:08:27
Configure and Run MySQL Image in a Container using Docker Compose
Урок 278. 00:05:35
Configure and Run Spring Boot in a Container using Docker Compose
Урок 279. 00:09:07
@Component Annotation
Урок 280. 00:05:06
@Autowired Annotation
Урок 281. 00:05:29
@Qualifier Annotation
Урок 282. 00:03:25
@Primary Annotation
Урок 283. 00:12:57
@Bean and @Configuration Annotations
Урок 284. 00:09:03
@Controller, @Service and @Repository
Урок 285. 00:06:21
@Lazy Annotation
Урок 286. 00:10:40
@Scope Annotation
Урок 287. 00:09:48
@Value Annotation
Урок 288. 00:14:22
@PropertySource and PropertySources Annotations
Урок 289. 00:16:33
@ConfigurationProperties Annotation
Урок 290. 00:09:48
@Controller and @ResponseBody Annotations
Урок 291. 00:04:53
@RestController Annotation
Урок 292. 00:08:35
@RequestMapping Annotation
Урок 293. 00:04:53
@GetMapping Annotation
Урок 294. 00:10:27
@PostMapping and @RequestBody Annotations
Урок 295. 00:07:32
@PutMapping Annotation
Урок 296. 00:05:06
@DeleteMapping Annotation
Урок 297. 00:09:29
@PathVariable Annotation
Урок 298. 00:07:29
@RequestParam Annotation