Wow, I struggled a lot with auth in spring security, but this is one of the clearest and most beautiful explanations of spring security I've ever seen! You broke down complex concepts into simple, easy-to-follow steps, and the examples were spot on. I'm very thankful
@Yangslehollandais5 ай бұрын
I never understood Spring Security like this last one. Very clear ❤🎉
@mohammedskouti34294 ай бұрын
You are the best guy on youtube to explain Spring boot
@Devivl5 ай бұрын
Great video showing different approaches. I like that we go from simple to complex in short videos. Thank you, Mr. Telusko.
@gonzalob.24284 ай бұрын
Great jobs Navin. It has costed time and effort to explain all thing but you did it exceptional!!!
@bharathashsn3 ай бұрын
The way you explain things are so good. You are a very good teacher.
@AcaciaSánchez-Xanina26 күн бұрын
really really good video!! even for an spanish people!! clair and concise. Many thanks!!
@hidayatullahabid22752 ай бұрын
Thank you for putting so much effort into the lectures. Hats off and respect!
@RK220825 ай бұрын
Lengthy video but I have enjoyed it most. Thank you so much Navin Sir ❤❤❤
@karthikkumar.m073 ай бұрын
Thank you so much for clearing my mind about the security filter chain and lambda expression .... you are such an amazing
@cheguevara13964 ай бұрын
Really a great effort in explaining the concepts with a good flow and steps, which results in acquiring the better spring security knowledge❤
@KaustubhKolhe5 ай бұрын
great video, theres always so much to learn from you
@ariel_chessАй бұрын
That was quite the journey!! Phew
@vasanthv42334 ай бұрын
Thanks sir . I Had made this project with Mongodb 😊
@RK220825 ай бұрын
GOAT in JAVA ❤❤❤
@vishwaravi455 ай бұрын
I am so addicted to you videos😢😂
@Deepak-r5l8w4 ай бұрын
oohhh hhoo
@DevGhost97Ай бұрын
He made it look like spring security is easy
@JayJayJay0074 ай бұрын
This is pure gold
@ucLe-ux7zp3 ай бұрын
Great lecture, thank sir
@GOLDY-em2vy2 ай бұрын
thank you Sir ❤
@prabhakaraadhik73774 ай бұрын
thank you this was a new concept for me...
@manishkeshari50965 ай бұрын
thank you sir , for helping in spring security
@AwetBrhanu3 ай бұрын
you are amazing dear
@KaustubhKolhe5 ай бұрын
awesome video sir, Thank you
@Coding-Just5 ай бұрын
great video sir thanks a lot
@Royalfamily-pl4ex5 ай бұрын
Please Sir don't forget JWT
@RK220825 ай бұрын
Sir has already mentioned that JWT video is also coming later in this Series bro 😊
@shivarajme14 күн бұрын
super!!!
@NandinerdeneMandakh4 ай бұрын
thank you
@prakharmishra77895 ай бұрын
Please upload more videos.
@anonymouCodePlay5 ай бұрын
Thank you sir
@himanshutenguriya7323 ай бұрын
Thankkk Youuu
@yashgupta47665 ай бұрын
Sir please make a video on Collections Framework like you did in DSA using java.
@pothuabhi5 ай бұрын
Sir please make video on role based authentication
@PriyanshuSoni-e3e3 ай бұрын
Hello sir, no need to make UserPrinciple class just implement UserDetails to User(Model). Just a Suggestion!!
@sgaming89065 ай бұрын
hey, telusko team , i think there is some ambiguity in the video, we don't need to create bean for authentication provider since we already talking to database through JPA methods. please correct it thank you.
@babureddypbr66165 ай бұрын
sir i am getting this error You have entered a password with no PasswordEncoder. If that is your intent, it should be prefixed with `{noop}`.
@coffeecoder1112 күн бұрын
@vamshikrishnareddy14185 ай бұрын
Post a video about custom login page
@someshwarreddy8463Ай бұрын
@iamDennisofficial2 ай бұрын
I have everything but, it keeps showing me user not found, can anyone help me please
@shravanyadav12895 ай бұрын
Whenever I'm entering credentials in output login form it is showing same form. Can some one sort this??
@mirzakariaislam6105 ай бұрын
.formLogin(formCustomizer -> formCustomizer .loginPage("/login") .permitAll() .defaultSuccessUrl("/home") ); Try this
@baaaaapug97083 ай бұрын
you have set the session to stateless while having formlogin enabled , either make sesion stateful or remove formlogin
@techikansh2 ай бұрын
WTFFFF java, I could do this with node and express in 5 minutes... :(
@zahirulislam2097Ай бұрын
Great video. Thank you again a lot. Only thing is role was not added in controller. everything worked fine. But when I added @PreAuthorize("hasRole('USER')") in controller, 403 Forbidden error, end the principal I have same role present. @Override public Collection