Update Your Spring boot Security: Websecurityconfigureradapter No Longer Supported

preview_player
Показать описание

🎁 🚀 COUPON Code: EARLYBIRD20

Don't Forget to
===========================================
💯 Subscribe to the youtube channel

#spring #learning #springboot #springtutorial #springsecurity #development
Рекомендации по теме
Комментарии
Автор

Join the Micro Services course waiting list and get and get an exclusive *EARLY-BIRD discount*

BoualiAli
Автор

Thank you my man! I hope you continue to update us on spring security new features and deprecation :) Wish you the best Bouali

AaRshavin
Автор

We were waiting for this video thank you

mouradeljayi
Автор

Really excited to try this feature out! Amazing work !

dtgamingtech
Автор

Thank youu, please continue uploading similar videos !

MrPivario
Автор

Thank you very much for absolutely clear explanation! I have watched your video about social login and about jwt implementation and i want to say thank you. Keep making such informative videos and hello from Ukraine! Subscribed<3
P.s. could you please make a video about how to implement bouth of them (jwt and social)?

denisbratuh
Автор

Very clear video, thank you for the effort

lebien
Автор

Nice Channel. Suscribed. One question, do you think at this moment Jakarta EE10 stack is a technology do I need to put the eye on it? or do you think Spring boot is winning the battle today?

BrattScorsa
Автор

Thank you very much for upgrade videos.. can you please also make sring boot 3 with logback 1.4.5 upgrade video

OdiaMadBiker
Автор

I also was gonna ask, JWT is used for 3rd party access. Is it possible to make a break video for form based authentication (.formLogin) or if you can point me in the right direction as far as the logic?

emmanuelU
Автор

please make a video for implementing spring security from scratch with OAuth 2 with jwt token. I am a fresher java developer, i am not understanding anything please.

cjai
Автор

I couldn't make the changes in my class below, can you help me?

import
import
import
import
import
import
import
import
import
import

@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

@Autowired
private BCryptPasswordEncoder passwordEncoder;

@Autowired
private UserDetailsService userDetailsService;

@Override
protected void auth) throws Exception {

}

@Override
public void configure(WebSecurity web) throws Exception {

}

@Override
@Bean
protected AuthenticationManager authenticationManager() throws Exception {
return
}
}

wagnerdba