Spring Security 6 Basics Guide (Easy, Secure Auth in Java)

Поділитися
Вставка
  • Опубліковано 5 сер 2024
  • Spring Security is a powerful and highly customisable authentication and access-control framework. It is the de-facto standard for securing Spring-based applications.
    Spring Security is a framework that focuses on providing both authentication and authorization to Java applications. Like all Spring projects, the real power of Spring Security is found in how easily it can be extended to meet custom requirements
    In this full course you will learn everything in detail about Spring Security. Before you begin this course you need to at least have a basic knowledge about Java and Spring Boot.
    👉🏾Download repo here: github.com/dinesh19aug/coding...
    ⭐ Timestamps ⭐
    00:00 INTRO
    0:1:30 QUICK WORD BEFORE WE BEGIN
    03:23 WHAT ARE WE BUILDING?
    05:47 OVERVIEW OF UNSECURED APPLICATION
    07:57 WHAT IS SPRING SECURITY
    09:15 WHAT IS AUTHENTICATION?
    10:15 WHAT IS AUTHROZATION?
    11:30 WHAT ARE FILTERS?
    13:11 TYPES OF FILTERS
    14:50 DELEGATING FILTER
    17:00 FILTER CHAIN PROXY
    19:23 SECURITY FILTER CHAIN
    27:23 BASIC AUTHENTICATION FLOW
    29:58 CODE: ADD SPRING SECURITY
    33:01 CODE: OVERIDING DEFAULT USERNAME AND PASSWORD
    35:16 CODE: ADDING USERS IN MEMORY DATABASE
    41:24 CODE: OVERRIDE DEFAULT FILTER CHAIN
    51:42 CODE: HTTP REQUESTMATCHERS
    57:35 CODE: IMPLEMENTING AUTHROZIATION
    01:07:21 CODE: ADDING DEFAULT JDBC AUTHENTICATION USING POSTGRES
    01:13:29 CODE: ADDING PASSWORD ENCODER
    01:18:27 CODE: ADDING CUSTOM AUTHENTICATION EXCEPTION
    01:22:45 CODE: ADDING CUSTOM USERS TABLE
    1:30:53 WHERE TO GO NEXT?
  • Наука та технологія

КОМЕНТАРІ • 3

  • @rv.raiankit001
    @rv.raiankit001 Місяць тому

    How to config UserDetailService?

    • @coding-with-danny
      @coding-with-danny  Місяць тому +1

      Just create a new class and implement the user details service and override its method

    • @rv.raiankit001
      @rv.raiankit001 Місяць тому

      ​@@coding-with-danny thanks a lot for this video. I have been looking for latest syntax spring security video from last January and now I finally found it.