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