Тёмный

Spring Security 6 | How to Create a Login System with Spring Data JPA and JWTs [NEW 2023] 

Unknown Koder
Подписаться 4,6 тыс.
Просмотров 79 тыс.
50% 1

Опубликовано:

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 304   
@kelvinwarui2982
@kelvinwarui2982 Год назад
You had me in the first 20 seconds , tutorial hell has brought me here i was almost loosing my mind on spring security
@adarshpandey8526
@adarshpandey8526 9 месяцев назад
You just revived my passion for spring boot based backend development. Thank you so much. This is the best spring security crash course I've found on RU-vid even better than the inspirations you mentioned in this video. The reason is, that you used less jargon and fancy Java. You showed basic Java skills to explain an already complex spring security concept which feels smooth. Most of the creators from the Java community tend to use a lot of fancy Java design patterns and advanced Java features which causes great difficulty for freshers to understand such complex concepts. Constructive Criticism: I have one small suggestion for you, the cutting of your voice is really not good. There are no pauses between your speech, leading to you sounding monotonous even when you're not. Also, it made me rewind many times since I never understood where one sentence ended and the other began. Love your content. keep going ♥
@cydoentis
@cydoentis Год назад
This video hit the nail on the head, I watched countless other videos from other people before I found this one, and the content was either outdated or poorly explained. I appreciate that you did everything from scratch and explained each step. Wish I found this video about 8 videos earlier, but I finally understand the whole implementation process for Jwt's. 11/10 will watch again.
@aboubakrghout8180
@aboubakrghout8180 10 месяцев назад
if u get it can u help me ?
@vsaihruthikreddy7127
@vsaihruthikreddy7127 8 месяцев назад
All I could say this is an extraordinary tutorial. I tried all of the spring security tutorials but they did not cover the nitty gritty aspects of it like the jwt token creation and authorization but you just were superb. Thank you very much for uploading a gem ❤
@fetterollie54
@fetterollie54 Год назад
Great video and working around the deprecated methods wasn’t too bad and was a very good practice of working with documentation. Thanks for putting this all together. 👏🏼👏🏼👏🏼
@mathewfrancis4167
@mathewfrancis4167 Год назад
how did you get the JwtAuthenticationConverter to work in the SecureityFilterChain ?
@fetterollie54
@fetterollie54 Год назад
@@mathewfrancis4167 I’ll check in a bit and get back to you
@mathewfrancis4167
@mathewfrancis4167 Год назад
@@fetterollie54I'll be infinitely great-full when you will :)
@fetterollie54
@fetterollie54 Год назад
@@mathewfrancis4167 Not sure if you can put code blocks in here: @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception{ http // disable cross site request forgery .csrf(csrf -> csrf.disable()) // any http requests are authorized .authorizeHttpRequests(auth -> { auth.requestMatchers("/auth/**").permitAll(); auth.requestMatchers("/admin/**").hasRole("ADMIN"); auth.requestMatchers("/user/**").hasAnyRole("ADMIN", "USER"); auth.anyRequest().authenticated(); }); http .oauth2ResourceServer((oauth2) -> oauth2.jwt(jwt -> jwt.jwtAuthenticationConverter(jwtAuthenticationConverter()))); http .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS)); // build into security chain return http.build(); };
@fetterollie54
@fetterollie54 Год назад
Also I stepped away from the project a month ago and haven’t looked at it since. Hope this is what you are looking for…
@cod4basterd
@cod4basterd Год назад
Holy crap. Thank you so much; this is amazing. Top tier content. I learned so much from this compared to hours of Amigoscode or Dan Vega. Nothing against those guys, they just have so much content to get through and a lot of it is outdated. Thank you so much for putting this together. I got what I needed out of it and then some.
@tyjantefinn4791
@tyjantefinn4791 Месяц назад
You are a true champion by not using Lombok Sir. Lol. When you did your first round of Encapsulation, I immediately implemented Lombok ;D
@sherlockholmes1605
@sherlockholmes1605 Год назад
Liked the video! Here's an idea for future tutorials, can you create git branches for each chapter? this way we can go back and forth between different chapters to compare and contrast the changes.
@Mihai-mb4ew
@Mihai-mb4ew 10 месяцев назад
Man, this video is top notch. It is exactly what was missing from youtube. Could you, please, share with us, how did you figure all this out? What materials did you use for documentation or how was your thought process? Or maybe is it just experience? I watched Dan Vegas' video about JWT and I was really wondering how to achieve role authorization. I wouldn't have figured it out by myself.
@superkobke
@superkobke Год назад
Well done. Had some troubles with dependencies but overall your video is quite amazing! Thank you so much!
@CarlosSousa-cq3jc
@CarlosSousa-cq3jc 5 месяцев назад
After thousands of videos on spring security, I finally found an excellent one
@maz1ogra
@maz1ogra Год назад
This video is a compilation of everything useful that is said in the other videos, discarding all the other useless things that are said, updating it to the latest versions of spring. Liked the video, keep it up.
@ShermukhammadKarimov
@ShermukhammadKarimov 2 месяца назад
thanks for this amazing masterclass
@aman_deep21
@aman_deep21 Год назад
What a fantastic to the point video it is, Thank you so much Ethan for sharing valuable knowledge with all of us, my knowledge before and after watching this video has increased very much, looking forward to more of your videos. I had watched a bunch of videos on this topic, but your explanation made it much easy to follow and code along with you.
@daffarandika3148
@daffarandika3148 2 месяца назад
clear and concise, great video mate!
@mrowox
@mrowox Год назад
What I usually want to see in security videos is handling security for different type of roles. E.g a backend service for sellers and buyers, drivers and riders, students and teachers and so on
@jhonandersonperaltaochoa9833
lo que tu quieres es manejo de roles
@anywho3934
@anywho3934 Год назад
hey have you figured it out ? any other resources you found ? cause I have to implement it in project
@MyBinaryLife
@MyBinaryLife 11 месяцев назад
this logic is implemented in the SecurityFilterChain bean in your security configuration class
@mohssinedardar410
@mohssinedardar410 Год назад
Thank you so much! I highly recommend this video to anyone who wants to learn about Spring Security. It is a comprehensive and informative resource :)
@apurvasaha8871
@apurvasaha8871 Год назад
Finally found a video for working around the older deprecated methods. Thank you very much. Edit: Unable to generate the jwt token during login, and getting a 401 Unauthorized error response back. Might be an issue with the deprecated jwt() method in oauth2ResourceServer(oauth2ResourceServerConfigurer::jwt()). But even with the new code oauth2ResourceServer(oauth2 -> oauth2.jwt(Customizer.withDefaults())) which provides a default implementation of the oauth2ResourceServerConfigurer class its not working. If anyone has faced the same issue and solved it, Please let me know. Thank you.
@TheMrBatica
@TheMrBatica Год назад
I had exact the same issue but I skipped the line 'daoProvider.setPasswordEncoder(passwordEncoder());' under SecurityConfiguration class -> AuthenticationManager ... i had only "daoProvider.setUserDetailsService(detailsService);" hope it helps.
@manmitapatnaik2513
@manmitapatnaik2513 Год назад
Yes please help in this. I am facing the same issue in intellij.
@manmitapatnaik2513
@manmitapatnaik2513 Год назад
​@@TheMrBaticaBut here daoAuthenticationProvider.setUserDetailsService(detailsService) is used . So what did you exactly change
@TheMrBatica
@TheMrBatica Год назад
I wrote what was my problem. I didn't have -> 'daoProvider.setPasswordEncoder(passwordEncoder());
@bochunator1173
@bochunator1173 7 месяцев назад
@@TheMrBatica Thanks, I had the same problem. Maybe someone has the same issue, so here I put proper code: @Bean public AuthenticationManager authManager(UserDetailsService detailsService) { DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setUserDetailsService(detailsService); daoProvider.setPasswordEncoder(passwordEncoder()); return new ProviderManager(daoProvider); }
@romanlobko1293
@romanlobko1293 10 месяцев назад
Amazing video! Such a complex topic was explained in a relatively simple way, thank you!
@sajithkumarganesan9823
@sajithkumarganesan9823 Год назад
Fantastic Video, Thank you for putting all this together in one place and having it explained very clearly and at a steady pace. Great work!!!
@shauryatomer1058
@shauryatomer1058 5 месяцев назад
Thanks, for this great tutorial. Concise and blazingly fast.
@SailBuddha
@SailBuddha 10 месяцев назад
This was fantastic! I followed it, but changed JPA to jdbcTemplate, because the road to Hell is paved with too much abstraction. Doing it that way, everything made perfect sense. Thank you!
@DarkHid3
@DarkHid3 8 месяцев назад
Good video, I watched it to the end, kinda hard to understand the whole thing because I've just started learning this framework but with the time for sure I will comeback and watch it again!
@maingawesley8212
@maingawesley8212 8 месяцев назад
Trust me I haven't started this tutorial, I just read the description and I know Spring Security is bagged already😆😅
@kwamekyeimonies
@kwamekyeimonies Год назад
Yeah, very true.about 80% of the videos sessions use deprecated modules
@pranavthakkar2720
@pranavthakkar2720 9 месяцев назад
The Best explanation I have even seen for spring security and jwt authentication. Thanks alot.
@khacthinh23.06
@khacthinh23.06 11 месяцев назад
tôi mới học khá lúng túng với spring security nhưng xem hết video của bạn tôi đã hiểu hơn rất nhiều, cảm ơn video của bạn.
@maelina2222
@maelina2222 3 месяца назад
This is a really great tutorial. Thanks for this
@ajaythombare6235
@ajaythombare6235 10 месяцев назад
Spring Security is confusing but you did a great job. I found a lot of things in one place it helped me a lot. Thanks
@malbunb
@malbunb 9 месяцев назад
This is a greate tutorial. Thanks for that!
@anurp4173
@anurp4173 10 месяцев назад
Wow, you had me in the first 20 seconds. Got the problem absolutely spot on. thanks
@anurp4173
@anurp4173 9 месяцев назад
I have done exactly as you have mentioned in the video upto configuring basic authentication, I keep getting 401 unauthorized exception despite supplying the username and password correctly
@koffeetalk
@koffeetalk Год назад
Wow, first time I get it right. Thank you! This channel should have much more followers. I had some issues using Lombok, but when I did all the constructors, getters, setters manually it's finally worked! I guess I need more experience with constructors first, then use lombok.
@unknownkoder
@unknownkoder Год назад
I have also had issues with Lombok and I know others sometimes do as well. That is why I chose not to use it in this video.
@pradeepk2864
@pradeepk2864 Год назад
perfect video, everything will go smoothly without getting any blocker for me, thanks brother for such a nice video😍
@alexbrun6863
@alexbrun6863 Год назад
Absolute legend for making this
@andtif
@andtif 10 месяцев назад
GOAT
@Justsomeguy492
@Justsomeguy492 Год назад
thanks for a clear video. its incredible how spring security team has no good documentation for spring security 6
@harshpratapsinghshekhawat3034
Much needed video on the upgraded ways of Spring Security, I'm glad that i was able to find it I have a request though, could you also post a video on formLogin using spring security
@dev-i2m
@dev-i2m 8 месяцев назад
Absolutely amazing video, learned a lot from this, Thanks!!
@kumar-mh6hy
@kumar-mh6hy Год назад
great content video with proper explanation keep doing contents like this 😍, i was looking for this type content for many days, i just wasted a lot of time but this saved my time and can explain how to save roles in DB annd retrieve it from DB and also about OAuth 2.0
@amitgrover1992
@amitgrover1992 Год назад
Thank for the detailed explanation, please suggest how to do authentication for an application using Thymeleaf and MVC controller.
@professionalyoutubevideowa37
@professionalyoutubevideowa37 11 месяцев назад
Excellent tutorial. This is just what I needed to get started.
@rashidcollins6337
@rashidcollins6337 11 месяцев назад
one of the best security tutorial, clear explanation, am now confidence about spring security. Thank you @Unknown Coder
@yogeshpatel2463
@yogeshpatel2463 11 месяцев назад
my project is not running bro
@iuliszekely8397
@iuliszekely8397 10 месяцев назад
Can you help me with something? I got stuck at some point
@bajrangchapola6748
@bajrangchapola6748 9 месяцев назад
Great Content!!! Can you make a video on how this authentication backend works with API gateway ? Any of the members if know
@curiosabouttech
@curiosabouttech Год назад
Thank you so much after searching alot i found this video that covered my ground up spring security and jwt thank you man.
@mathewfrancis4167
@mathewfrancis4167 Год назад
Lovely just what i needed ... i'm new to this level of spring security ... so I hope this question isn't a silly one ... i would like to know how and where you generated the public and private key in you code... thank you :)
@jackedkarlmarx
@jackedkarlmarx 3 месяца назад
Hey @Unknown Koder, I fixed the bug you encountered at 1:41:35, apparently this stems from a deprecated use of the jwt() Method, this is the correct way of configuring it as of Spring Security 6.1.x: .oauth2ResourceServer((oauth2) -> oauth2 .jwt(jwtConfigurer -> jwtConfigurer.jwtAuthenticationConverter(jwtAuthenticationConverter())))
@kheydbeats
@kheydbeats Год назад
It was indeed an absolute Behemoth of a video! Great tutorial, loved the pacing and the explanations. My subscribe and like is your good sir.
@tylerljohnson
@tylerljohnson 10 месяцев назад
excellent tutorial, and thank you for the timestamps!
@duri467
@duri467 5 месяцев назад
mega tutorial man, THANKS !
@aashirsiddiqui177
@aashirsiddiqui177 Год назад
Thanks for the vid, the deprecated APIs were a pain in the ass!
@codex8797
@codex8797 9 месяцев назад
Thank you so much bro, you are a life saver
@Justin_Jay
@Justin_Jay Год назад
Wow. Thank you for this. Brilliant
@삐따기-s7y
@삐따기-s7y 6 месяцев назад
Wonderful! Thanks!
@existence_zero1692
@existence_zero1692 Год назад
This video is the best spring security video ❤
@timonka1zer822
@timonka1zer822 6 месяцев назад
Thank you for your content!
@KieranMueller
@KieranMueller Год назад
fyi if you are struggling with deprecated methods, or other things (example: I was unable to run project due to an error with the security filter chain method, request matchers specifically. You can always just downgrade the version of Spring Boot in your POM.xml to use what was used in the video and everything will work.
@kennethisaac233
@kennethisaac233 Год назад
Nice idea
@podcasts.clips.delivery
@podcasts.clips.delivery Год назад
Brother, you are a lifesaver!
@oshannanayakkara6187
@oshannanayakkara6187 8 месяцев назад
Bro this is golden
@mr_bla_
@mr_bla_ Год назад
fantastic video thanks lot
@olliDeg
@olliDeg Год назад
Great video, really helpful!
@RotorVideos01
@RotorVideos01 8 месяцев назад
Thank you for the video!
@togashi-azul
@togashi-azul 7 месяцев назад
Very good video
@kvittitoe
@kvittitoe Год назад
fantastic video
@manishareddy1
@manishareddy1 9 месяцев назад
Great Video..Thank you so much
@AlessandroMorelli-i1l
@AlessandroMorelli-i1l 10 месяцев назад
This video is amazing
@MathiasDurrenberger
@MathiasDurrenberger 9 месяцев назад
Well done. A 1000 thanks
@abdelmoneimelshafei6570
@abdelmoneimelshafei6570 Год назад
Big thanks, Sir 🥰🥰🥰
@bojidaryordanov2035
@bojidaryordanov2035 11 месяцев назад
Insane video. Ty so much
@gaddp
@gaddp Год назад
sick hoodie man
@michasasua8977
@michasasua8977 11 месяцев назад
thank you for you effort, great job!
@vipulwarik
@vipulwarik Год назад
Thank You! That was very helpful
@randomforest_dev
@randomforest_dev Год назад
thanks for this awesome tutorial! very helpful!
@t0khyo
@t0khyo Год назад
Toturial hell got me here bro 🗿👍🏿
@KuldipGhotane
@KuldipGhotane Год назад
It was brilliant, please add oauth 2 support for the same repo
@madukaPcm
@madukaPcm 6 месяцев назад
Greate tutorial, Am asking for getting an end-point which returns an access token by accepting refresh token, Note Access token should also be returned on login attempt.
@kaydanderson4487
@kaydanderson4487 Год назад
Awesome video, I followed everything you said (mostly) and got postman working at the end, but Im a bit confused on how to implement a login page and move to a secured page?
@abdelkadermiladi5647
@abdelkadermiladi5647 8 месяцев назад
THANK YOU
@BeneTanStarcraft
@BeneTanStarcraft Год назад
Thanks for this video!
@simeonrubko1218
@simeonrubko1218 Год назад
Fantastic video...only problem I recieved was at 1:35:00 during login There is no PasswordEncoder mapped for the id "null" i don't know if I have done something wrong or need to update spring security....it doesnt work with admin as well
@unknownkoder
@unknownkoder Год назад
Double check the repository in the description, I believe you are missing the mapping for the password encoder in the SecurityConfig class.
@simeonrubko1218
@simeonrubko1218 Год назад
I double checked it and there was nothing missing..but when I copied all code from Config class it suddenly worked..thanks for the answer@@unknownkoder
@simeonrubko1218
@simeonrubko1218 Год назад
I have one more question though..now that we have functional webapp working through postman.. how can I set up this to work within webpage ? I mean now we have working hashing and tokens.. I created login and register form.html but don't know how to connect those parts together
@rohity294
@rohity294 Год назад
@@unknownkoder same error for me too.
@NishantBudia
@NishantBudia Год назад
I had the same problem, for me I had not set the password encoder in the AuthenticationManager Bean in security config @Bean public AuthenticationManager authManager(UserDetailsService detailsService){ DaoAuthenticationProvider daoProvider = new DaoAuthenticationProvider(); daoProvider.setUserDetailsService(detailsService); daoProvider.setPasswordEncoder(passwordEncoder()); //this line I had not written return new ProviderManager(daoProvider); }
@michaels2048
@michaels2048 9 месяцев назад
Thank you for the video, do you know how i can be able to display this information in my next js project
@QmGhq2T7CzQ
@QmGhq2T7CzQ Год назад
I am using DOMA, I can't declare the Set authorities as it says it is not supported as persistent type.
@luciano5026
@luciano5026 7 месяцев назад
Thank you !!!!
@fahrican9708
@fahrican9708 Год назад
great video!
@WilliamBurroughs-q3b
@WilliamBurroughs-q3b Год назад
Thanks very much for the vid! Really enjoy your teaching style! I am having a bit of a problem though, when I change the loadUserByUsername() method inside the UserService class to call findUserByUsername on the repo, the app stops accepting a valid username & password combination of admin. I have checked the database and the user admin tuple is definately there but I get an error 401 no matter what I enter? Have been stuck on this for a few days so would appreciate any help! Thanks very much in advance!
@unknownkoder
@unknownkoder Год назад
Sounds like a problem in the Spring security configuration most likely.
@WilliamBurroughs-q3b
@WilliamBurroughs-q3b Год назад
@@unknownkoder Configuration public class SecurityConfig { @Bean public PasswordEncoder passwordEncoder(){ return new BCryptPasswordEncoder(); } @Bean public AuthenticationManager authenticationManager(UserDetailsService detailsService){ DaoAuthenticationProvider daoAuthenticationProvider = new DaoAuthenticationProvider(); daoAuthenticationProvider.setUserDetailsService(detailsService); return new ProviderManager(daoAuthenticationProvider); } @Bean public SecurityFilterChain filterChain (HttpSecurity http) throws Exception{ http .authorizeHttpRequests((authz) -> authz.anyRequest().authenticated() ) .httpBasic(withDefaults()); return http.build(); } } This is my ssecurityConfig at 47 mins - Can you see anything that might be causing this? Thanks in advance!
@paulosamvrosiadis3484
@paulosamvrosiadis3484 Год назад
i have the same problem , have you solved it ?
@WilliamBurroughs-q3b
@WilliamBurroughs-q3b Год назад
@@paulosamvrosiadis3484 Yes! Turns out I wasn't sending the POST request properly. Using postman & ensuring I was sending a POST request properly helped solve it. Goodluck!
@hamzaazeem4602
@hamzaazeem4602 Год назад
Same problem :(
@gatio23
@gatio23 Год назад
Very nice video! Can you tell me how to log out with a jwt token? Should I store it in tokenRepo and disable it on logout? Thanks!
@unknownkoder
@unknownkoder Год назад
Yes, there should be something along the lines of an invalidate method for your token object.
@Ayman_youtube
@Ayman_youtube 8 месяцев назад
thank you
@Blazs120gl
@Blazs120gl 11 месяцев назад
Hi, this was an exhaustive example I've been looking for. Thank you very much! I would like to extend this project with static HTML pages. How can I do that? I've added HTML pages (e.g. an index.html under resources/static) but I can't access any of the pages. they're all blank and I get 401 responses to them. I tried to add the static path to auth request matchers, but no joy so far. Any ideas what's missing? Thanks in advance!
@vatana7
@vatana7 Год назад
Thank you for your tutorial
@sasaprograma
@sasaprograma Год назад
Great content, thanks a lot!!
@sougatasingha9587
@sougatasingha9587 7 месяцев назад
Nice tutorial but can you tell me how do I follow these steps from spring security documentation?
@theominarinidemelo756
@theominarinidemelo756 Год назад
TU É FODA MAN, VC É INCRIVELLLLLLLL
@merakli2022
@merakli2022 6 месяцев назад
Thanks for the content. I believe java spring boot authentication is unnecessarily complex, clunky and requires too much boilerplate code.
@lucaspraado
@lucaspraado Год назад
Hi man, i have this erro in my securityConfiguration. line : .oauth2ResourceServer(OAuth2ResourceServerConfigurer::jwt) Error: 'jwt()' is deprecated and marked for removal Do you no fix?
@onadiranbayonle2368
@onadiranbayonle2368 Год назад
you can have it like this http .oauth2ResourceServer(oauth2 -> oauth2 .jwt(jwt -> jwt .jwtAuthenticationConverter(jwtAuthenticationConverter()) ) );
@josefjanda4008
@josefjanda4008 Год назад
Is this some help for this part of code?
@ashishprakashsingh9073
@ashishprakashsingh9073 7 месяцев назад
If anyone please help
@AhmetMurati
@AhmetMurati Год назад
in first minutes I subscribed
@sfgmbkmbksfg3722
@sfgmbkmbksfg3722 8 месяцев назад
Mind blowing
@sandokan888
@sandokan888 Год назад
why so much boilerplate code? why is the framework not making it easier to configure it? Thank you very much for this. Everything else out htere on youtube was deprecated. You also had some deprecated lines but I figured their new implementations out.
@dimkaddd7674
@dimkaddd7674 7 месяцев назад
why there is no doFilterInternal to filter the JWT and check if it was valid, and as I remember there was a secret key that is used to generate JWT
@eugenesmith9940
@eugenesmith9940 Год назад
Do we really need to return user credentials (even if it's wrapped into some DTO without any sort of sensitive information)? I mean is it so-called "best practice" or we can just return simple status code? Is it mandatory to return anything or we can just use void methods in such cases?
@unknownkoder
@unknownkoder Год назад
Its not mandatory, however some applications may use some of the users information in the frontend of the application. This is why I send back basic info in the tutorial.
@satyaprasannadash5401
@satyaprasannadash5401 Год назад
the video is really helpful, but faced a problem, can you help me out ? 1:09:44 => there is no arg for httpBasic() method in Filtercahain config method 1:09:47 => Suddunly a the arg appeared as httpBasic(withDefaults()) can you explain the purpose of withDefault() method? did you create it or it will be refered from somewhere else
@unknownkoder
@unknownkoder Год назад
If you take a look at the repository in the description, and go to the AuthConfiguration class you will see that withDefault() is a static import from Spring Security.
@satyaprasannadash5401
@satyaprasannadash5401 Год назад
@@unknownkoder Thanks for clarification, btw the actual problem is, I am facing while adding the permitAll() access to the auth/** for registraion at 1:09:50 , I got an error while starting the server after adding it i.e Factory method 'filterChain' threw exception with message: This method cannot decide whether these patterns are Spring MVC patterns or not. If this endpoint is a Spring MVC endpoint, please use requestMatchers(MvcRequestMatcher); otherwise, please use requestMatchers(AntPathRequestMatcher). so I think it may prevented by adding withDefaults(), but showing same even after addding, can you help me out ?
@domingosgilubisse9606
@domingosgilubisse9606 Год назад
Thanks a lot mate. Could you add Refresh Token?
@unknownkoder
@unknownkoder Год назад
Its definitely an idea I can jot down for a future video.
@RonitPandey-z5r
@RonitPandey-z5r Год назад
Cool I am also thinking of starting a code related YT channel . Is it really a good idea
Далее
ТИПИЧНОЕ ПОВЕДЕНИЕ МАМЫ
00:21
Просмотров 1,3 млн
Part 5. Roblox trend☠️
00:13
Просмотров 2,7 млн
How to Build A CLI Todo App in Go
38:15
Просмотров 10 тыс.
OAuth2  & Spring boot 3 & Social login | never been easier
1:05:27
ТИПИЧНОЕ ПОВЕДЕНИЕ МАМЫ
00:21
Просмотров 1,3 млн