Java Spring Boot [2024] Part 13: Spring Security (Basic Auth)

preview_player
Показать описание
Join my Patreon:

LinkTree:

Maven Link for Spring Boot security:

Properties file:

CREATE TABLE custom_user (
username VARCHAR(50) PRIMARY_KEY,
password VARCHAR(255) NOT NULL
);

0:00 Intro
0:31 Default Spring Security
2:08 Basic Authorization
4:25 Security Filter Chain & authenticated endpoints
6:49 Cross Site Request Forgery (CSRF)
8:15 Authorities & Security Filter Chain
10:55 Method Level Security & Roles
12:43 User Details in Database

#java #javaframework #learnjava #learntocode #javatutorial #javaforbeginners #springboot #springboottutorial #javaspringboot #backendframework #backend #backendwebdevelopment #springsecurity #security #basicauthorization #authorization #username #password
Рекомендации по теме
Комментарии
Автор

Here is the link to the full playlist:

peachezprogramming
Автор

had quite a bit of trouble towards the end and you were right that i had to rewatch it a few times! but great content, looking forward to the rest

josepascua
Автор

i know that im beeing a bit repetitive but i really learn a lot by reading ur code so i just wanted to say thx

enzoaugustomarco
Автор

Thanks for the video, I really like your videos, you explaining in very simple way, please continue to share your knowledge if it is possible

berserk.
Автор

Hi guys, I followed the videos, and when I try to test creating a new user at 18:41, I still get a 403 Forbidden error. As an attempt to debug, I print the user in the Request body out, and they are null (not very surprised). It seems that because the body object is null, nothing happens next. However, I just don't know why there is a 403 Forbidden error in the response...
Does anyone face this problem?

nhachanh