Spring Boot Security Simplified with Spring Security Lambda DSL

Sdílet
Vložit
  • čas přidán 14. 03. 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 ❤️
  • Věda a technologie

Komentáře • 34

  • @gunnerxt
    @gunnerxt Před rokem

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

  • @fabrizziocordova5250
    @fabrizziocordova5250 Před měsícem

    Great Video Dan as always

  • @kostiantynkarzhanov9216
    @kostiantynkarzhanov9216 Před 2 měsíci

    Thank you! Awesome video as always! 💛

  • @WaldoRochow
    @WaldoRochow Před 9 měsíci

    A very clear explanation. Thanks.

  • @joachimdietl6737
    @joachimdietl6737 Před rokem

    I like these videos. Thanks a lot, Dan !

  • @AleksandarT10
    @AleksandarT10 Před rokem +2

    Great one Dan! We need more of these!

    • @DanVega
      @DanVega  Před rokem +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!

  • @systemoutprinthakim
    @systemoutprinthakim Před rokem +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!

  • @ahmedsallam2868
    @ahmedsallam2868 Před rokem

    Thanks Dan, that is great :)

  • @mlensment
    @mlensment Před rokem

    I love the new syntax, much cleaner finish.

  • @Matrium0
    @Matrium0 Před rokem +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....

  • @natureloverJ
    @natureloverJ Před dnem

    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?

  • @jaiylonbabb7548
    @jaiylonbabb7548 Před rokem +3

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

    • @DanVega
      @DanVega  Před rokem +2

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

  • @khaled.noordin
    @khaled.noordin Před rokem +1

    Thanks dan

  • @lakkireddysudhakarreddy2480

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

  • @tvu67
    @tvu67 Před rokem

    tks you very much

  • @marjot87
    @marjot87 Před rokem +2

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

    • @DanVega
      @DanVega  Před rokem +1

      I created a video on my IntelliJ setup if you're interested
      czcams.com/video/g78is10FjF0/video.html

  • @fabianrr
    @fabianrr Před 8 měsíci

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

  • @AshokGudise
    @AshokGudise Před 9 měsíci

    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 Před rokem

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

  • @NattaWang
    @NattaWang Před rokem

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

  • @USONOFAV
    @USONOFAV Před 10 měsíci

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

  • @manojsaravanan3824
    @manojsaravanan3824 Před rokem

    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.

  • @sleepycakeawake
    @sleepycakeawake Před rokem

    DAAAAAAAAAAAAAAAAAAAAAAAAAAN! THX!

  • @omongecalvince4701
    @omongecalvince4701 Před rokem +1

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

    • @DanVega
      @DanVega  Před rokem

      I created a video on my IntelliJ setup if you're interested
      czcams.com/video/g78is10FjF0/video.html

  • @emmanuelU17
    @emmanuelU17 Před rokem +1

    First

  • @saravanakumar.v9564
    @saravanakumar.v9564 Před rokem +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  Před rokem +3

      EnableWebSecurity no longer has @Configuration in it.