No video

Spring Security Architecture Explained

  Рет қаралды 104,788

Amigoscode

Amigoscode

Күн бұрын

Пікірлер: 77
@amigoscode
@amigoscode Жыл бұрын
Join waiting list here 🔥- waiting-list.amigoscode.com/
@rahff99
@rahff99 Жыл бұрын
as salem 3alaylk, there is a miskate in your website UI, the bundle 2 courses for fullstack is display with a price of 1400$, but under the link the first course price is 98$ and the second one is 480$, I think there is a bug.
@midlajj
@midlajj Жыл бұрын
Please do the explanation of OAuth2 authentication architecture..
@seanfang398
@seanfang398 Жыл бұрын
I've been studying springboot recently, and I really scratched my head a lot when learning spring security even after watching your tutorial video😂 This architecture tutorial will be a great help for me, thank you so much 🙏
@grabieldelanieved.380
@grabieldelanieved.380 23 күн бұрын
@@seanfang398 Me too bro, me too xd
@michaelmihov1651
@michaelmihov1651 10 ай бұрын
Spring security is such an overwhelming topic at first sight. But thanks to our wonderful community and especially thanks to Nelson we are making quick progress :)
@user-tm4jc5ej8z
@user-tm4jc5ej8z Жыл бұрын
thanks sincerely from korea. I couldn't find good spring security architecture explanation in my language. most of blog posts or instructors just focus on how to use, and all of them is using spring boot 2.x so I couldn't apply spring security to my company project which is using spring boot 3.0 effectively. this video and your channel is really really useful. thanks again
@kordiankrecisz5298
@kordiankrecisz5298 Жыл бұрын
Beautifully explained. Until now it all looked like magic to me. Cheers!
@s.k.6563
@s.k.6563 8 ай бұрын
The best. Not just a code, but an explanation.
@eliastefera8574
@eliastefera8574 Жыл бұрын
Probably one of the best explanations about Spring Security!
@serhiisterniichukda-0131
@serhiisterniichukda-0131 Жыл бұрын
Wow, lately you have been doing a lot of content about security in Spring Boot.
@heyyrudyy404
@heyyrudyy404 Жыл бұрын
The best spring security 101 overview I’ve ever had 🔥🔥🔥
@cihatgelir2711
@cihatgelir2711 Жыл бұрын
I was trying to find a time to look for this concept. Thanks a lot man. Appreciated.
@MrTutiplengo
@MrTutiplengo Жыл бұрын
Awesome companion video to Ali's two hour video. This helped make more sense of what is happening internally.
@DogoOrtodoxo
@DogoOrtodoxo 2 ай бұрын
Guy, your video has a high quality video and audio, congrats
@user-jd8sn2zf8g
@user-jd8sn2zf8g Жыл бұрын
Thank you, video very clear, everyone can understand architecture Spring Security !
@kostiantynkarzhanov9216
@kostiantynkarzhanov9216 6 ай бұрын
Awesome tutorial! Thank you for the great explanation! 💛
@milad_mo
@milad_mo Жыл бұрын
Your videos and explanations always are helful and complete, Thanks Akhavi.
@user-kh9nm3tr1v
@user-kh9nm3tr1v Жыл бұрын
Assalamu alaykum. May Allah bless you brother, greetings from Chechnya!
@ssbing99
@ssbing99 Жыл бұрын
Thankyou. Im finally have a clear understanding on this
@mookayreet8518
@mookayreet8518 Жыл бұрын
I like your short video, I don't know why, they are so interesting.
@jesper2455
@jesper2455 Жыл бұрын
Good video if you are already familiar with Spring Security and need a refresher, not so useful for beginners.
@amitkumarkhade7988
@amitkumarkhade7988 7 ай бұрын
great video!! Please append it before the jwt video. Only watching jwt video gets extremely confusing. I understood the jwt video after watching this video.
@eloyam9973
@eloyam9973 11 ай бұрын
Very useful and well explained video
@alessandrobx5850
@alessandrobx5850 Жыл бұрын
Awesome and very clear explanation
@eptitsyn
@eptitsyn Жыл бұрын
Thanks, security is crucial nova days.
@m.k799
@m.k799 Жыл бұрын
Thanks for this helpful explanation, could you please make a video to explain with an example about spring batch 5
@djoleezcool
@djoleezcool Жыл бұрын
👏Can't wait for the full course. I hope price will be suitable. :D
@ramadanlotfe829
@ramadanlotfe829 Жыл бұрын
The best for ever 😍
@dugumayeshitla3909
@dugumayeshitla3909 Жыл бұрын
Wonderful content. Thanks.
@janakisnotebook
@janakisnotebook Жыл бұрын
Thanks bro. 😊 , awesome
@student_03
@student_03 2 ай бұрын
thank you very much
@bluex217
@bluex217 5 ай бұрын
I think my question about the diagram is this: If we have a custom JWTAuthenticationFilter that is simply extracting the username/password from the token within the HTTP headers, and creating a standard UsernameAndPasswordAuthenticationToken to pass to the AuthenticationManager, then wouldn't we just take that straight to the DAOAuthenticationProvider, since that generally expects Authentication type of UsernameAndPasswordAutnethicationToken? Therefore, in that case, what is the point of having a JWTAuthenticationProvider? Is JWTAuthenticationProvider actually an ALTERNATIVE to having a custom filter (IE "JWTAuthenticationFilter") , to setup JWT authentication?
@TheCheapsonor
@TheCheapsonor 7 ай бұрын
Thank you for this
@dmytroshmidt5981
@dmytroshmidt5981 6 ай бұрын
Thank you
@rogeert
@rogeert Жыл бұрын
can you make a video about Keycloak integration with spring boot 3.
@andyk544
@andyk544 Жыл бұрын
We need the same about Spring Boot 3 + OAuth2. Maybe with Keyclock or Okta...
@huntleymurdock3004
@huntleymurdock3004 Ай бұрын
Why don't JwtAuthenticationFilter just drop the request, is it necessary to do filters after it?
@ramanujambandi
@ramanujambandi Жыл бұрын
Awesome videos. Recently am moved to UK. Am going to start my career here. Can you provide tips or how the interview process going here. Am also java developer with 3 years experience
@TheAd021
@TheAd021 9 ай бұрын
I don't get it. How does a JWT has something to do with UsernamePasswordAuthenticationToken? Isn't it just a signed JSON, and all we need is to check signature? Where does the "password" part come from?
@VVV-xf5vl
@VVV-xf5vl Жыл бұрын
awesome content
@KartikDhiman
@KartikDhiman Жыл бұрын
is it a typo "ANGULARJS" in frontend section ?
@romeobernabe6871
@romeobernabe6871 Жыл бұрын
Hi nelson, maybe you bet to discuss SB 3 with OAUTH2. Thanks
@valikonen
@valikonen Жыл бұрын
Angular dev core members love Java...
@erroratsql
@erroratsql Жыл бұрын
You are the best
@jovanvuticovski7781
@jovanvuticovski7781 Жыл бұрын
Can you make a video of Springboot 3.0 and security. Since a lot is depricated. I'd like to learn how to use role based security for rest apis.
@omgmaw
@omgmaw Жыл бұрын
Great video! Also can you provide a link to download the Spring Security architecture diagram? Thank you!
@ASSASIN299
@ASSASIN299 Жыл бұрын
@amigoscode I dont understand how the UserNamePasswordToken calls the Providermanager? Is it something spring internal?
@valitovgaziz
@valitovgaziz Жыл бұрын
Hi. Thanks for video. Can your sharing with me the picture on guide? That define spring security? Please.
@giorgitughushi6509
@giorgitughushi6509 Жыл бұрын
KZfaq is missing Good Quality Video of Java spring boot With Websockets !
@adebisiabdulbaasit9465
@adebisiabdulbaasit9465 Жыл бұрын
Jazakumullahu khairan 🥰, I noticed no teslim?
@LukmanJaji
@LukmanJaji Жыл бұрын
me too :)
@martianstarslit3768
@martianstarslit3768 6 ай бұрын
Thank you for this. Please can you do on an app that has two roles like Doctor and patient, not just Admin and User? This means each person would sign up on their own, no admin creating a new user. If anyone has any Spring Security video like this, they can share too. Thank 6
@erickjhormanromero6905
@erickjhormanromero6905 Жыл бұрын
I'm so interested in the code that you showed. Where can i get it?
@guuridev
@guuridev Жыл бұрын
Which is the diagram creator tool which is used for this????
@szalaytamas3184
@szalaytamas3184 Жыл бұрын
3:59 heimerdinger
@muhammadseude
@muhammadseude Жыл бұрын
As-salaamu-alaiqum brother. I want to understand how the OAuth2.0 Authentication and Authorization is implemented with the help of API Gateway in micro-services environment. Please suggest any videos.
@noormustafa926
@noormustafa926 2 ай бұрын
Wa Alaikum Assalam
@rahff99
@rahff99 Жыл бұрын
great
@ikhsanopl738
@ikhsanopl738 3 ай бұрын
is the course have translated?
@user-xo9zp3nh6w
@user-xo9zp3nh6w Жыл бұрын
good
@sciab3674
@sciab3674 Жыл бұрын
thumb up thanks
@public1303
@public1303 Жыл бұрын
Please amegose make vedio spring boot with file system
@robertsonbilonda2142
@robertsonbilonda2142 Жыл бұрын
How to rotate my roles so that a user can have access to select modify a resource only if the latter has an admin or super-admin role and also what is the alternative to the @EnableGlobalMethodSecurity() annotation in spring security 6
@freddydurkee8632
@freddydurkee8632 Жыл бұрын
it's just @EnableMethodSecurity now
@chibuikeokeke2832
@chibuikeokeke2832 Жыл бұрын
Hi Nelson are you the one handling Amigoscode personal account that recently got deactivated. Pls I have some explanations to make on it. I lost money.
@user-cu1mz4ok3u
@user-cu1mz4ok3u Жыл бұрын
Can you share the project? Thanks!
@rahilsanghavi9347
@rahilsanghavi9347 11 ай бұрын
12:50 is there any particular reason why our filter was inserted before the UsernamePasswordAuthenticationFilter only? I have been looking at several spring security implementations and almost all of them have inserted the custom filter before UsernamePasswordAuthenticationFilter. I am wondering if this is some commong practice or a coincidence.
@javainstancese-learningcen8883
@javainstancese-learningcen8883 Жыл бұрын
Hi 👋
@vietronaldo23w
@vietronaldo23w Жыл бұрын
hello. first comment :D
@geosystems2106
@geosystems2106 6 ай бұрын
Very strange material ! It is like "if you have a map, I will show you how I got here". Who cares ?? You should be telling how to follow the right path to understand :/ probably too busy with trying to sell trainings :P
@tuo5336
@tuo5336 Жыл бұрын
First
@devdadph
@devdadph Жыл бұрын
First also hahaha
@CheeseStickzZ
@CheeseStickzZ 7 ай бұрын
Or you can just use keycloak and skip everything besides the jwtauthconverter and the securityfilterchain lmao
@darogajee3286
@darogajee3286 Жыл бұрын
unable to understand . worst explaintaion possible . where is webSecurityConfigurerAdapator modified class
@ganeshbabu8263
@ganeshbabu8263 11 ай бұрын
It's spring security 6
When you discover a family secret
00:59
im_siowei
Рет қаралды 17 МЛН
Meet the one boy from the Ronaldo edit in India
00:30
Younes Zarou
Рет қаралды 19 МЛН
Kids' Guide to Fire Safety: Essential Lessons #shorts
00:34
Fabiosa Animated
Рет қаралды 16 МЛН
Here's The Secret How To Create These Animated Diagrams
11:12
Amigoscode
Рет қаралды 425 М.
What Is JWT and Why Should You Use JWT
14:53
Web Dev Simplified
Рет қаралды 1,1 МЛН
Learn Dependency Injection and Write Better Code
21:52
Amigoscode
Рет қаралды 171 М.
Аутентификация - Spring Security в деталях
1:05:16
Уголок сельского джависта
Рет қаралды 28 М.
JDBC vs JPA: Pros and Cons
11:56
Pro Coder
Рет қаралды 31 М.
Spring Security explained with no code
16:51
Bouali Ali
Рет қаралды 19 М.
Java Roadmap for 2024
11:28
Amigoscode
Рет қаралды 149 М.
Spring Boot + Spring Security + JWT from scratch - Java Brains
39:29
10 Spring and Spring Boot Common Mistakes You Need To STOP
15:49
Amigoscode
Рет қаралды 147 М.
When you discover a family secret
00:59
im_siowei
Рет қаралды 17 МЛН