Class Central is learner-supported. When you buy through links on our site, we may earn an affiliate commission.

Udemy

Building Real-Time REST APIs with Spring Boot - Blog App

via Udemy

Overview

Build REAL-TIME REST APIs with Java, Spring Boot, Spring Security 6, JWT, Spring Data JPA, Hibernate, MySQL, Docker, AWS

What you'll learn:
  • Learn REST API Fundamentals - REST API, Resource, Sub-resource, URI, HTTP methods, HTTP status codes
  • Learn REST API Fundamentals - How to Design REST APIs
  • Learn REST API Fundamentals - Best Practices
  • Learn REST API Differences - GET vs POST, POST vs PUT, PUT vs PATCH, REST vs SOAP, and REST vs GraphQL
  • Learn Building Rest API’s for Blog App Using Spring Boot, Spring Security, JWT, Spring Data JPA (Hibernate), MySQL Database.
  • Learn How to Build CRUD REST APIs in Spring Boot Project
  • Learn How to Build CRUD REST API's for ONE-TO-MANY Relationship - /posts/{postId}/comments/{commentId}
  • Learn How to Build REST APIs for Pagination and Sorting in Spring Boot Project
  • Learn How to Build REST API's for Search / Filter REST API in Spring Boot Project
  • Learn How to Build REST API’s for Login and Signup in Spring Boot Project
  • Learn How to Use Lombok Library
  • Learn How to Use DTO’s
  • Learn Spring Boot REST API Exception Handling
  • Learn Spring Boot REST API Validation
  • Learn How to Use Spring Security in Spring Boot Project and How to Perform In-Memory and DB Authentication and Authorization
  • Learn How to Secure REST APIs ( Role Based Security) in Spring Boot Project
  • Learn How to Write Query Methods Using Spring Data JPA
  • Learn One-To-Many and Many-To-Many JPA/Hibernate Mappings
  • Learn How to Test REST API’s using Postman REST Client
  • Learn What is JWT, How it Works and How to configure JWT ( JSON Web Token) in Spring Security
  • Learn How to Use JWT with Login API and secure REST APIs using JWT
  • Learn Important 4 Versioning REST API Strategies
  • Learn REST APIs Documentation with Swagger UI
  • Test Spring Boot REST APIs with JWT using Swagger UI
  • Learn Customizing Swagger REST Documentation with Annotations
  • Learn How to Add Profiles the Spring Boot Project
  • Learn Transaction Management with Spring Boot and Spring Data JPA
  • Learn How to Deploy Spring Boot Blog App on AWS Cloud (Production)
  • Learn Spring Data JPA Fundamentals
  • Dockering Spring Boot Application Step by Step
  • Dockering Spring Boot MySQL CRUD Application Step by Step
  • Docker Compose - Dockering Spring Boot MySQL CRUD Application Step by Step

Disclaimer:

"This course requires you to download Docker Desktop from the official Docker website. If you are a Udemy Business user, please check with your employer before downloading software."

In this course, you will learn how to build REAL-TIME RESTAPIs by developing a complete Blog application and how to deploy it on the AWScloud.


In this course, we will follow thereal-time industry-standardproject development approach.

This course covers Spring Boot RESTAPI development from scratch.

This course covers the REST API fundamentals from scratch.


Important: This course supports Spring Boot version 3+and Spring Security version 6+.


The source code and PDFfiles (class notes) are available for download.


What is RESTAPI?

REST stands for Representational State Transfer. It’s a set of rules that developers use to build APIs that work over the web, just like the websites you visit in your browser. When an API follows the rules of REST, we call it a REST API.


What is Spring Boot?

Spring Boot is an opinionated framework that helps developers build Spring-based applications quickly and easily.

The main goal of Spring Boot is to quickly create Spring-based applications without requiring developers to write the same boilerplate configuration repeatedly.

Spring Boot is a very popular framework for developing REST web services and microservices.


You will learn the following topics in this course:

  • Learn how to build great REST APIs for a Blog App using Spring Boot, Spring Security, JWT, Spring Data JPA (Hibernate), MySQL database

  • Learn REST API Fundamentals - REST API, Resource, Sub-resource, URI, HTTP methods, HTTP status codes

  • Learn REST API Fundamentals - How to Design RESTAPIs

  • Learn REST API Best Practices

  • Learn REST API Differences - GET vs POST, POST vs PUT, PUT vs PATCH, REST vs SOAP, and RESTvs GraphQL

  • Learn the basics of Spring Boot REST API Development along with annotations

  • Learn how to build CRUD REST APIs for a Blog App

  • Learn how to build REST APIs for ONE-TO-MANY relationships in a Blog App

  • Learn how to build REST APIs for Pagination and sorting for a Blog App

  • Learn how to build a Search / Filter REST API

  • Learn how to build REST APIs for Login/Sign-in and Signup for a Blog App

  • Learn how to use Lombok

  • Learn how to use DTOs

  • Learn Spring Boot REST API exception handling

  • Learn Spring Boot REST API validation

  • Learn how to use Spring Security in the Spring Boot Blog App

  • Learn Spring Security In-memory and Database authentication and authorization

  • Learn how to secure REST APIs ( role-based security) in a Blog App

  • Learn how to write query methods using Spring Data JPA

  • Learn one-to-many and many-to-many JPA mappings

  • Learn how to test REST APIs using Postman REST Client

  • Learn What is JWT and How it Works

  • Learn how to configure JWT ( JSON Web Token) in Spring Security

  • Learn how to secure REST APIs using JWT

  • Learn how to use JWT with the Login API

  • Learn versioning REST APIs

  • Learn Important 4 versioning REST API strategies

  • Learn REST API documentation with Swagger UI

  • Test Spring Boot REST APIs with JWT using Swagger UI

  • Learn Customizing Swagger REST Documentation with Annotations

  • Learn how to add profiles (to deploy in different environments) Spring Boot project.

  • Learn Transaction Management with Spring Boot and Spring Data JPA

  • Learn how to deploy the Spring Boot Blog app on AWS cloud (production)

  • Dockering Spring Boot Application Step-by-Step

  • Dockering Spring Boot MySQL CRUD Application Step-by-Step

  • Docker Compose - Dockerizing Spring Boot MySQL CRUD Application Step-by-Step

  • 30+ bonus videos for Spring Boot beginners

  • Important Spring Boot topics for interviews


Tools and Technologies used in this course:

Technologies:

  1. Java

  2. Spring Boot

  3. Spring MVC

  4. Spring Data JPA ( Hibernate)

  5. Spring Security

  6. JWT

  7. Tomcat

IDE:

  • Intellij IDEA

Database:

  • MySQL database

Tools:

  1. Swagger - API documentation

  2. Postman - Test REST API

  3. Maven - Build Tool

Deployment on Production:

  • AWS

By the end of this course, you will be able to build real-time RESTAPIs for any application using Spring Boot and deploy them on the AWScloud.

Syllabus

  • Introduction
  • Setting Up Your Development Environment
  • REST API Fundamentals - Basics and Key Concepts
  • REST API Fundamentals - Design REST APIs
  • REST API Fundamentals - Best Practices
  • REST API Fundamentals - Important Differences [Interview Questions and Answers]
  • Introduction to Spring Boot
  • Spring Boot REST API Development Basics (Covered Important Annotations)
  • REST API's Design for Blog Application
  • Understanding DTO Pattern
  • Building CRUD REST API's for Post Resource
  • Pagination and Sorting Support
  • Building CRUD REST API's for Comment Resource ( One to Many)
  • Using ModelMapper - Map Entity to DTO and Vice Versa
  • Exception Handling in Spring Boot Project
  • REST API Validation in Spring Boot Project
  • Migration to Spring Boot 3
  • Securing REST API's using Spring Security 6 & Spring Boot 3
  • Login and Register REST APIs using Spring Security 6 & Spring Boot 3
  • JWT Introduction
  • JWT - Securing REST API's with JWT Token using Spring Security 6 & Spring Boot 3
  • Category Management Feature Implementation
  • REST API Documentation using SpringDoc OpenAPI in Spring Boot 3
  • [OLD] Securing REST APIs - Spring Boot 2
  • [OLD] Login/Signin and Register/SignUp REST APIs - Spring Boot 2
  • [OLD] JWT (Json Web Tokens) - Securing REST API's with JWT - Spring Boot 2
  • Versioning REST APIs
  • [OLD] Swagger REST API Documentation - Spring Boot 2
  • Deploy Spring Boot Blog App on AWS Cloud
  • Dockering Spring Boot Application Step by Step
  • Dockering Spring Boot MySQL CRUD Application Step by Step
  • Docker Compose - Dockering Spring Boot MySQL CRUD Application Step by Step
  • Build Search REST API Step by Step (Added New Section)
  • Transaction Management with Spring Boot and Spring Data JPA (Added New Section)
  • Introduction to Microservices
  • Spring Data JPA for Beginners - Getting Started
  • Spring Data JPA for Beginners - Important Spring Data JPA Repository Methods
  • Spring Data JPA for Beginners - Creating Custom Query Methods or Finder Methods
  • [NEW Section] Build CRUD REST APIs using Spring Boot 3 and PostgreSQL Database
  • [NEW Section] Build REST APIs for Simple Banking Application
  • [New Section] Lombok Course from the Scratch | Goodbye Boilerplate Code
  • Interview Preparation - Important Spring Boot Concepts for Interviews
  • Interview Preparation - 25+ Spring and Spring Boot Annotations
  • What's Next?
  • Some of the Frequently Asked Questions in this Course

Taught by

Ramesh Fadatare (Java Guides)

Reviews

4.4 rating at Udemy based on 3301 ratings

Start your review of Building Real-Time REST APIs with Spring Boot - Blog App

Never Stop Learning.

Get personalized course recommendations, track subjects and courses with reminders, and more.

Someone learning on their laptop while sitting on the floor.