Spring Security Patterns

Поділитися
Вставка
  • Опубліковано 26 сер 2024

КОМЕНТАРІ • 17

  • @IScorpionI
    @IScorpionI 3 роки тому +5

    Great talk with many valuable background information on underlying patterns and decisions. Also great idea to paste those code blocks using code templates during the talk.

  • @chrizzking
    @chrizzking 3 роки тому +1

    great talk and very easy to follow along the code provided. Thanks guys!

  • @laubrino
    @laubrino 2 роки тому

    Great video. And right from the source!

  • @guruprasadrao7
    @guruprasadrao7 Рік тому

    Gold level talk

  • @IvanRandomDude
    @IvanRandomDude 3 роки тому +3

    28:44 If Only Java had expressions (Expression in this case) like C# so we could use it to specify what field of auth object we want instead of using magic string.

    • @adambickford8720
      @adambickford8720 3 роки тому

      Java does have that (Function) but the problem is that annotations have to be known at compile time (short of stupid reflection hacks)

  • @vishnumurali522
    @vishnumurali522 3 роки тому

    Great work...👏👏👏👏

  • @mirageman2
    @mirageman2 3 роки тому

    Great work, please more of this :)

  • @deryamilas2593
    @deryamilas2593 2 роки тому

    do you guys have any video for authorization based on roles in spring security

  • @allisonmachado
    @allisonmachado 3 роки тому +3

    bom demais!

  • @PradeepKumar-bp4lp
    @PradeepKumar-bp4lp 3 роки тому +1

    Thanks bro

  • @sacch6579
    @sacch6579 3 роки тому

    I am wondering if one can have one version of git code with security and one without? If yes, is it easy to be maintained in parallel?

  • @alexandroskourtis5268
    @alexandroskourtis5268 3 роки тому

    Great talk :))

  • @saurabhsuman4960
    @saurabhsuman4960 Рік тому

  • @songbaiyin7830
    @songbaiyin7830 Рік тому

    I wish spring security does not include a default filter chain, they are useless. Every time I had to disable csrf here and disable stateful session there. I would be thinking: why don't we have a RestApiFilterChain. becoz rest api is the main stream now. Also could spring security be more opinionated and less flexible? Just have one way to do things and do things right. The spring security will be much much easier then.

  • @michaelholopainen2822
    @michaelholopainen2822 3 роки тому +4

    The DSL... the HTTP Security DSL is the biggest failures of Spring Framework. It is absolutely horrible. It is unreadable spaghetti code. It absolutely needs block level elements which the fluent inferface does not have. Fluent works and is readable when it ALWAYS returns the same type.
    NO one knows how to get the HttpSecurity to work. Every time is is just random stabs in the dark until it suddenly kind-of works and then they to make your app support what ever you got to work that is close enough of what you wanted.