This really is getting better and better!! I might finish it today!!
That's a great lesson. Thanks for trying. You're doing a great job. With small steps we are making big strides.
SecurityFilterChain: The central concept. It's a chain of Filter objects, each responsible for a specific aspect of security (authentication, authorization, etc.). The order of these filters is crucial.
PasswordEncoder: Responsible for encoding and verifying passwords. Spring Security provides several implementations, including BCryptPasswordEncoder and Pbkdf2PasswordEncoder.
You can add your own custom Filter implementations to the SecurityFilterChain to perform specific security-related tasks, such as: Logging access attempts Implementing custom authentication schemes Adding security headers Modifying requests or responses
Thank you for this video Navin, it was very helpful.
Navin sir, I am really thankful to learn spring security from you. But I also want to learn how you approach these technologies that you want to learn(Talking as a beginner point of view).
great video again 👍👍
Again excellent!
sir please continue this series of Spring Security With JWT
Thank you sir... latest and upto the market needs
Great tutorial❤
WebSecurityConfigurerAdapter (Deprecated, but still widely used): A base class for configuring Spring Security. Override its methods to customize the SecurityFilterChain. Recommendation: Prefer Component-based Configuration (using @Configuration and @Bean) for newer projects, as WebSecurityConfigurerAdapter is deprecated and may be removed in future versions.
UserDetailsService: An interface used by Spring Security to load user information from a data source (e.g., a database). You implement this interface to provide your own user retrieval logic.
That was great 👍
Component-based Configuration: A more modern approach using @Configuration and @Bean to define security configuration components.
super Naveen!!!
the Custom Configuration settings methods are too large it's confusing and how to store this all syntax and methods in the human brain....?
Great explainations
@yogeshsaidani1607