HIT THAT SUBSCRIBE BUTTON GUYS, PLEASE SUPPORT IF YOU LIKE MY WORK. Join us on Telegram for SOURCE CODE: link.embarkx.com/telegram If you're interested in learning more about Spring Boot, then this course is for you! In this full course, we'll walk you through everything you need to know to create a Spring Boot application. *GROW AS JAVA DEVELOPER* 1. SIGNUP FOR MY SPRING BOOT FOR BEGINNERS COURSE: link.embarkx.com/spring-boot-coupon 2. LEARN JAVA WITH 60+ HOURS OF CONTENT: link.embarkx.com/java-coupon 3. MASTER INTELLIJ IDEA: link.embarkx.com/intellij-course-coupon COMMENT AND LET ME KNOW WHAT SHOULD I BRING NEXT FOR YOU ON THIS CHANNEL?
I take a somewhat critical view of feeling the SecurityContextHolder directly in the controller. Any self-written code is prone to errors. Isn't it better to use the spring mechanisms like the provider
I am at the start pf jwt its very confusing for me till the date. I am trying for my first job switch i hope i will understand it better so that i can explain it to anyone
Dear Fisal, I hope this message finds you well. I wanted to express my gratitude for your excellent Spring Security series. I recently completed watching the entire series, and your clear and detailed explanations have significantly enhanced my understanding of the subject. Your insights on various security aspects were incredibly valuable, and I am particularly interested in the section where you covered JSON Web Tokens (JWT). Your approach to explaining complex concepts in a simple and practical manner was truly impressive. I am currently working on a project that involves implementing JWT for secure communication, and I believe that having access to the source code you demonstrated in your series would be immensely helpful. I kindly request if you could share the JWT source code used in your tutorials. This would provide a solid reference for us and ensure we are following best practices as illustrated by you. Rest assured, any code shared will be used strictly for internal purposes, and we will acknowledge your contributions in any related documentation or presentations. Thank you for considering my request. I greatly appreciate your support and look forward to your positive response. HAYAT TARIQUE
I am chandra shekar, aspiring java developer from Telangana State, Could you please make a create videos' on mostly used annotations and Java 8 to 22 features finally, loved your content and thanks a lot for your ultimate content
thank you for your very helpful tutorials. It would be much better when you write the code during the tutorial and explain it meanwhile, than copying it then explaining it. IIRC that was the case in the spring security videos, which were more understandable. Thank you anyway :)
Hey, this playlist was great, I was able to cover the spring security and use it in my project within 2 days. I have two suggestions, 1. try to the git repo of code in the description. 2. instead of copy pasting it would be great if you can write live or even copy paste works, but be sure to share the complete screen, sides are getting cropped leaving the code there not visible. Keep Going!
public String getUsernameFromJWTToken(String token) { return Jwts.parserBuilder() .setSigningKey(key()) .build() .parseClaimsJws(token) .getBody().getSubject(); } If anyone in the future find the similar issue, you can refer to the above code/. from version 0.11.x the older parse method is depreciated
im not sure how it makes sense for security context holder to be used in login endpoint as all it does is authenticate the user and return jwt. Can you explain why it is needed here?
Hi I think instead of this Sql course can you please add more on spring security, that will really be helpful. We can get videos of spring security here and there but since your videos are of great value I would request you to add more videos on top of spring security such as: - Using Oauth2 with Spring Security. - What are KeyCloks and how to implement those. - What are available Authorization servers like Okta and how to integrate with them. - And most importantly how to integrate with Google Signin, where the apps and website allows us to login through Google and Facebook etc.
Hiii sir , your explanation and tutorials are very easy to understand the very complex concepts . Big thanks to your efforts and hardwork . These concepts really helps a lot to so many people . As every application will be having sso . Can you explain sso implementation with oauth2.0
Thanks a lot for your tutorials. It's really good! I would like to watch some tutorial on adding authentication\authorization within microservices (Spring Cloud stack)
kindly make one full end to end mega backend project(springboot) which covers all technologies, for example like online food delivery website, e-commerce website, online payment website Etc.....
HIT THAT SUBSCRIBE BUTTON GUYS, PLEASE SUPPORT IF YOU LIKE MY WORK.
Join us on Telegram for SOURCE CODE: link.embarkx.com/telegram
If you're interested in learning more about Spring Boot, then this course is for you! In this full course, we'll walk you through everything you need to know to create a Spring Boot application.
*GROW AS JAVA DEVELOPER*
1. SIGNUP FOR MY SPRING BOOT FOR BEGINNERS COURSE: link.embarkx.com/spring-boot-coupon
2. LEARN JAVA WITH 60+ HOURS OF CONTENT: link.embarkx.com/java-coupon
3. MASTER INTELLIJ IDEA: link.embarkx.com/intellij-course-coupon
COMMENT AND LET ME KNOW WHAT SHOULD I BRING NEXT FOR YOU ON THIS CHANNEL?
Please make a detailed video on oAuth 2.0 implementation.
outstanding teaching and very exceptional understanding. thanks a lot for this quality material in easyly manner teaching.
I take a somewhat critical view of feeling the SecurityContextHolder directly in the controller. Any self-written code is prone to errors. Isn't it better to use the spring mechanisms like the provider
Next videos should be about Kafka, Redis, spark tutorial with Spring boot
Really need it.
I am at the start pf jwt its very confusing for me till the date. I am trying for my first job switch i hope i will understand it better so that i can explain it to anyone
Dear Fisal,
I hope this message finds you well. I wanted to express my gratitude for your excellent Spring Security series. I recently completed watching the entire series, and your clear and detailed explanations have significantly enhanced my understanding of the subject.
Your insights on various security aspects were incredibly valuable, and I am particularly interested in the section where you covered JSON Web Tokens (JWT). Your approach to explaining complex concepts in a simple and practical manner was truly impressive.
I am currently working on a project that involves implementing JWT for secure communication, and I believe that having access to the source code you demonstrated in your series would be immensely helpful. I kindly request if you could share the JWT source code used in your tutorials. This would provide a solid reference for us and ensure we are following best practices as illustrated by you.
Rest assured, any code shared will be used strictly for internal purposes, and we will acknowledge your contributions in any related documentation or presentations.
Thank you for considering my request. I greatly appreciate your support and look forward to your positive response.
HAYAT TARIQUE
I am chandra shekar, aspiring java developer from Telangana State,
Could you please make a create videos' on mostly used annotations and Java 8 to 22 features
finally, loved your content and thanks a lot for your ultimate content
thank you for your very helpful tutorials.
It would be much better when you write the code during the tutorial and explain it meanwhile, than copying it then explaining it.
IIRC that was the case in the spring security videos, which were more understandable.
Thank you anyway :)
Hey,
this playlist was great, I was able to cover the spring security and use it in my project within 2 days. I have two suggestions,
1. try to the git repo of code in the description.
2. instead of copy pasting it would be great if you can write live or even copy paste works, but be sure to share the complete screen, sides are getting cropped leaving the code there not visible.
Keep Going!
Check description/telegram community
Can LoginRequest, LoginResponse also be named LoginRequestDto, LoginResponseDto?
Is it possible to have a video to show case the creating of basic encryption and decryption using java?
explained with details, thank you so much
can you do a small video how this can be incorporated into microservices
Unable to find verifyWith method in Jwts, while trying to extract the username from JWT Token string
public String getUsernameFromJWTToken(String token) {
return Jwts.parserBuilder()
.setSigningKey(key())
.build()
.parseClaimsJws(token)
.getBody().getSubject();
}
If anyone in the future find the similar issue, you can refer to the above code/. from version 0.11.x the older parse method is depreciated
Thank you so much sir!!!!!!!!!!!!!
im not sure how it makes sense for security context holder to be used in login endpoint as all it does is authenticate the user and return jwt. Can you explain why it is needed here?
Hi I think instead of this Sql course can you please add more on spring security, that will really be helpful. We can get videos of spring security here and there but since your videos are of great value I would request you to add more videos on top of spring security such as:
- Using Oauth2 with Spring Security.
- What are KeyCloks and how to implement those.
- What are available Authorization servers like Okta and how to integrate with them.
- And most importantly how to integrate with Google Signin, where the apps and website allows us to login through Google and Facebook etc.
Try going through the Spring Security playlist of Laur Splica + his book Spring Security in Action, and for KeyCloak watch Ali Bouali's tutorial.
make video on angular with springboot
Hiii sir , your explanation and tutorials are very easy to understand the very complex concepts . Big thanks to your efforts and hardwork . These concepts really helps a lot to so many people . As every application will be having sso . Can you explain sso implementation with oauth2.0
Thanks a lot for your tutorials. It's really good! I would like to watch some tutorial on adding authentication\authorization within microservices (Spring Cloud stack)
Thank you so much.
Atleast provide the source code. You are copypasting it, yet expecting us to write it line by line
Check description
Please build a project by using functional programming
Thank you 😊 sir 🔥🔥
sir please make a video for custom user details service with mysql
This video covers custom user details service. You can replace the database to whatever you want by just modifying application.properties
Not understood bruh
kindly make one full end to end mega backend project(springboot) which covers all technologies, for example like online food delivery website, e-commerce website, online payment website Etc.....
Working on same. Releasing this month mostly. It's e-commerce end to end.
Swagger with authentication
video on oauth
would have been better if the source code was shared, or atleast code live as we go along rather than copy pasting code , nice video though
Check description
Whrere i get source code
Check description/telegram community
17:54 my timestamp
hii watching from bhopal ,could not understand this video
Bro , where I can find source code or git hub link ?
Check description/telegram community
Hard video