Spring Boot Security Simplified with Spring Security Lambda DSL

Поделиться
HTML-код
  • Опубликовано: 14 мар 2023
  • In this tutorial, you will learn how to use Spring Security's Lamba DSL. This is a different syntax for configuring Spring Security that does not require you to chain configurations together using .and() as the previous method did. By the end of this tutorial, you will be able to use the Lambda DSL in your own Spring Security Configuration.
    🔗Resources & Links mentioned in this video:
    Github Repository: github.com/danvega/hello-secu...
    👋🏻Connect with me:
    Website: www.danvega.dev
    Twitter: / therealdanvega
    Github: github.com/danvega
    LinkedIn: / danvega
    Newsletter: www.danvega.dev/newsletter
    SUBSCRIBE TO MY CHANNEL: bit.ly/2re4GH0 ❤️
  • НаукаНаука

Комментарии • 34

  • @kostiantynkarzhanov9216
    @kostiantynkarzhanov9216 2 месяца назад

    Thank you! Awesome video as always! 💛

  • @gunnerxt
    @gunnerxt Год назад

    The view count doesn't do justice to the quality of this video. The world should see this. Thank you Dan

  • @fabrizziocordova5250
    @fabrizziocordova5250 Месяц назад

    Great Video Dan as always

  • @joachimdietl6737
    @joachimdietl6737 Год назад

    I like these videos. Thanks a lot, Dan !

  • @AleksandarT10
    @AleksandarT10 Год назад +2

    Great one Dan! We need more of these!

    • @DanVega
      @DanVega  Год назад +3

      That's great to hear! I always struggle with making these in depth tutorials so I love hearing that these short tips are helpful!

  • @WaldoRochow
    @WaldoRochow 9 месяцев назад

    A very clear explanation. Thanks.

  • @systemoutprinthakim
    @systemoutprinthakim Год назад +5

    Hey Dan! Could you give us some tips about freelancing or getting remote jobs especially for inexperienced developers, maybe in a future video? Also thank you for all your efforts this channel is a gem!

  • @mlensment
    @mlensment Год назад

    I love the new syntax, much cleaner finish.

  • @ahmedsallam2868
    @ahmedsallam2868 Год назад

    Thanks Dan, that is great :)

  • @natureloverJ
    @natureloverJ 2 дня назад

    Hi Dan,
    Smart stuff always with concise words.
    One question.
    What is the http command prompt you use for rest api testing from the IntelliJ console ?
    I searched and found many, please tell me which one you are using?

  • @khaled.noordin
    @khaled.noordin Год назад +1

    Thanks dan

  • @lakkireddysudhakarreddy2480
    @lakkireddysudhakarreddy2480 Год назад

    Hey Dan! Nice content.. thank you. Would you clarify if there is a way to disable default authentication in spring security 6. !!

  • @fabianrr
    @fabianrr 8 месяцев назад

    Hello, thank for the video, cors( ) isn't necessary?

  • @Matrium0
    @Matrium0 Год назад +2

    I really feel like this does not make it simpler in the slightest. You save on a view "and"s but that's about it. It's just DIFFERENT, but not more readable. Making the old way deprecated (and possibly removing it later) means that EVERYONE upgrading his Spring project has to switch his completely-working Security Configuration with a slightly different-looking configuration.
    This takes a lot of time if you are not familiar and bears the risk of breaking things.
    I like most things they do with the Springframework, but DAMN - i just hate this! Value our time more Framework Creators, thank you....

  • @tvu67
    @tvu67 Год назад

    tks you very much

  • @jaiylonbabb7548
    @jaiylonbabb7548 Год назад +3

    Can you do a tutorial on implementing a form of multi-factor authentication in a Spring application?

    • @DanVega
      @DanVega  Год назад +2

      I will add the suggestion to my backlog. Thank you!

  • @AshokGudise
    @AshokGudise 9 месяцев назад

    Hi @Dan: Great to see your content. I am having difficulty to find a working example for OAuth2 Client Credentials (server to server) using new spring boot 3 and webflux 6(with webclient). Could you pease do a video on this one?

  • @MrMuntasir66
    @MrMuntasir66 Год назад

    what http client are you using.looks like you are using in terminal, is it a plugin ?

  • @sleepycakeawake
    @sleepycakeawake Год назад

    DAAAAAAAAAAAAAAAAAAAAAAAAAAN! THX!

  • @marjot87
    @marjot87 Год назад +2

    The Look of the IDE is pretty cool! Is this the default theme for IntelliJ IDEA Ultimate?

    • @DanVega
      @DanVega  Год назад +1

      I created a video on my IntelliJ setup if you're interested
      ruclips.net/video/g78is10FjF0/видео.html

  • @USONOFAV
    @USONOFAV 10 месяцев назад

    I still like the expressiveness of the method chaining than the lambda dsl

  • @NattaWang
    @NattaWang Год назад

    Pardon, but how do you settings your IDE to colorize the console log?

  • @manojsaravanan3824
    @manojsaravanan3824 Год назад

    Hi Dan Vega, I would appreciate it if you could provide Spring security 6 course. There are many people on the internet looking for the right course, so I'm requesting you to make it. Thanks in advance.

  • @omongecalvince4701
    @omongecalvince4701 Год назад +1

    Great content Dan. offering option for us. Could i know this intellij theme please

    • @DanVega
      @DanVega  Год назад

      I created a video on my IntelliJ setup if you're interested
      ruclips.net/video/g78is10FjF0/видео.html

  • @emmanuelU17
    @emmanuelU17 Год назад +1

    First

  • @saravanakumar.v9564
    @saravanakumar.v9564 Год назад +2

    Nice one dan. May I know the reason that why you are using @Configuration at SecurityConfig class. As @EnableWebSecurity already has configuration in it ?

    • @DanVega
      @DanVega  Год назад +3

      EnableWebSecurity no longer has @Configuration in it.