Spring Security in one video | Spring Security Crash Course | HINDI

preview_player
Показать описание
In this video we are going to learn the basic as well as some advance concept of spring boot security in just one video step by step .

TimeStamp:
Source Code: i will update soon the link

Important Videos:

Important Playlist:

Important Links:

Disclaimer:
All videos are for educational purposes and use them wisely. Any video may have a slight mistake, please take decisions based on your research. This video is not forcing anything on you.
Рекомендации по теме
Комментарии
Автор

14:30 - Important Points
39:00 - Spring Security
43:28 - Spring Security Working Flow:
49:37 - Understanding the working flow in IDE
55:41 - Working of PostMan
57:26 - Basic Authentication
1:05:16 - Creating our own user & login
1:13:00 - Password Encoder
1:25:59 - Role based Authentication
1:36:00 - Understanding about @PreAuthorize (method level security)
1:38:00 - CSRF
1:47:55 - Form based Authentication
2:09:45 - Working with Real Database

poorpanda
Автор

Security Config Upto 1:25:00 (After removing deprecated code)

package

import
import
import
import
import
import
import
import
import
import

import static

@Configuration
@EnableWebSecurity
public class MySecurityConfig {

@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http
-> authz
// .antMatchers("/home", "/login", "/register").permitAll()


)
.httpBasic(withDefaults());
return http.build();
}

@Bean
public InMemoryUserDetailsManager userDetailsService() {
UserDetails user = User.builder()
.username("user")

.roles("USER")
.build();

UserDetails admin = User.builder()
.username("admin")

.roles("USER", "ADMIN")
.build();

return new InMemoryUserDetailsManager(user, admin);
}

@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder(10);
}
}

codemonk
Автор

Please try to complete this timestamp.
Time Stamp:
Spring Security Working Flow: 43:28
Types of Authentication-
1. Basic Authentication: 55:00
Basic Authentication - Ant Matcher: 01:18:40
Basic Authentication - Role Based Authentication: 01:26:30
Basic Authentication - CSRF: 01:37:50
2. Form Based Authentication: 01:47:30

vikramvaishnav
Автор

Microservices & Spring Framework Ke Sabhi Components Pe Full Course Banaiye Plz

jiteshsingh
Автор

Most of the classes are deprecated. can you please re-upload spring security module with latest version of spring boot.

mohammadasif
Автор

Spring security module starts at 39:00

pratikgaikwad
Автор

Sir, I have seen all of your videos and I can clearly say that I had learnt a lot from your videos. Sir please make one video on login, based on roles by fetching data from database. I had searched all over the internet but none of the video helped me out. If u got time then sir please make video on this using spring boot(Web Application). Thank you for the videos-tutorials that u had already made so far

AshishSingh-scbu
Автор

When i first started with spring boot, i didn't understand anything in this video. But after 1 month when i watch this video again now i understood everything. Every possible errors and how you handle it which helped me a lot
No one explains like you. But for beginners this video might not make any sense. But once they understand basics this is must watch video 🎉

ashwins
Автор

aap farishte ho bhagwan ke. amazing tutorial. Grateful I found you on youtube. we need more educators like you.

varshassawlani
Автор

Great sir outstanding 👏only aap hi ek jo students ki dil ki baat sunte ho😍😍

DeepakGupta-pzfx
Автор

Much awaited and amazing content sir . Thank You 🙂 . Kindly post Microservices tutorial next if possible as it's one of the "Must haves" today .

shwetabhat
Автор

Durgesh sir, Thank you so much for this wonderful video...pls bring next 2nd part of microservices 🙏

nileshpawar
Автор

Spring Security Explained in short and crisp way. Great Content Durgesh Bhaiya. You have covered all the basic things on Spring Security. Loved your Content

subhosen
Автор

in spring has been deprecated what to do?

sonitrajput
Автор

This is So Next Level In-depth, I just love the way you explained such a Difficult conccept

ankithsaireddy
Автор

Thank you sir! I read books and tutorials but, I didn't got how internally it works and how we can use. You r really great.

aakashzinzurao
Автор

Waiting Ended Here🔥🔥🔥🔥🔥Thanks Guruji..

dharmendragorana
Автор

Junit Testing ke upar aur debugging ke videos banao sir.. 👍👍this video very useful

sourabhfulmali
Автор

hi Durgesh, , its amnazing vdo in hindi..many indians tach need that ...i also cleared my doubt for interviews....keep rocking...if you have this kind paid workshop for others like giuthub, data structure etc i ll try to join..thanks again..

bhupendra_dubey
Автор

Bhai this guy is superb, you are genius bro may God give you whatever you want 🌹🌹🌹

amitkumar