В этом курсе вы изучите основы Spring Framework Core 6, Spring Boot 3, REST API, Spring MVC, WebFlux, Spring Security, Spring Data JPA, Docker, Thymeleaf, IntelliJ IDEA, Maven и создание проектов.
Вам не требуется предыдущий опыт работы с фреймворком Spring. Я научу вас всем основным функциям Spring Framework, чтобы вы глубоко поняли Spring Boot и как он работает внутри.
Что такое Spring Boot?
Spring Boot представляет собой расширение фреймворка Spring, которое устраняет необходимость в написании повторяющихся конфигураций для настройки приложения на Spring.
Spring Boot - это мнение фреймворка, которое помогает разработчикам быстро и легко создавать приложения на основе Spring. Основная цель Spring Boot - быстро создавать приложения на основе Spring без необходимости писать повторяющуюся конфигурацию снова и снова.
Что такое Spring MVC?
Spring MVC - это популярный модуль в Spring Framework, который используется для разработки веб-приложений и RESTful веб-сервисов.
Spring MVC называется веб-фреймворком, потому что он предоставляет все необходимые компоненты для разработки полноценного веб-приложения.
Фреймворк Spring MVC предоставляет архитектуру Model-View-Controller (MVC) и готовые компоненты, которые могут быть использованы для разработки гибких и слабосвязанных веб-приложений.
Что такое Thymeleaf?
Thymeleaf - это современный серверный шаблонизатор на языке Java для веб- и автономных сред, способный обрабатывать HTML, XML, JavaScript, CSS и даже обычный текст.
Основная цель Thymeleaf - предоставить элегантный и легко поддерживаемый способ создания шаблонов.
Он часто используется для генерации HTML-представлений для веб-приложений.
Thymeleaf является очень популярным выбором для создания пользовательского интерфейса, поэтому мы будем использовать Thymeleaf для создания слоя представления в веб-приложении Spring MVC (приложение блога).
Посмотреть больше
Это пробный урок. Оформите подписку, чтобы получить доступ ко всем материалам курса. Премиум
Урок 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
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
Автор - udemy
udemy
Udemy - одна из самых больших площадок в мире по доставке обучающего контента от разных авторов всего мира. Присутсвуют курсы практически на любую тему.
Команда внимательно читает ваши комментарии и оперативно на них реагирует. Вы можете спокойно оставлять запросы на обновления или задавать любые вопросы о курсе здесь.
Hibernate и Spring Data JPA: От начинающего до гуру
Hibernate and Spring Data JPA: Beginner to Guru
Hibernate - это реализация JPA по умолчанию, используемая Spring Data JPA.ОБРАТИТЕ ВНИМАНИЕ: Для этого курса требуются Java 17 и Spring Boot 3.JPA означает Java Persistence API. Это общий Java API, используемый для работы с реляционными базами данных.Spring Data JPA является абстракцией, построенной поверх спецификации JPA API.Благодаря абстракции Spring Data JPA, работа с сущностями базы данных становится очень эффективной.Spring Data JPA устран
Тестирование приложений Spring Boot с JUnit, Mockito и Testcontainers
Testing Spring Boot App with JUnit, Mockito & Testcontainers
В этом курсе вы научитесь писать модульные тесты и интеграционные тесты в стиле BDD для приложений Spring Boot и Spring WebFlux, используя фреймворки JUnit 5, Mockito, AssertJ, Hamcrest, JsonPath и Testcontainers. Важное замечание: Этот курс обновлен для использования Spring Boot 3.
Mobius 2023 Spring. Конференция для мобильных разработчиков
Mobius 2023 Spring - конференция для мобильных разработчиков. Несколько десятков докладов об iOS, Android, кроссплатформенной разработке, инструментах, фреймворках и многом другом.
Java Spring & Apache Kafka Bootcamp - От начала до конца
Java Spring & Apache Kafka Bootcamp - Basic to Complete
Сегодня мы работаем с множеством систем и данными, которые пересекаются между ними. Часто одна система запускает процесс в другой системе(ах), или данные должны передаваться между системами. Независимо от того, построены ли ваши системы на монолите или микросервисах, какую бы базу данных вы ни использовали, вам нужно передавать данные с одной точки в другую. И вам нужно это делать быстро, чтобы данные обрабатывались немедленно (иначе ваша жизнь б
Курс "Spring Framework 6: От начинающего до гуру" является полным руководством по изучению Spring Framework 6 - одного из самых популярных Java-фреймворков для создания веб-приложений и микросервисов. На протяжении этого курса вы научитесь создавать мощные приложения на основе Spring Framework, используя все его основные компоненты, такие как IoC контейнер, AOP, Spring MVC, Spring Security, JPA и многое другое.