Protect Your Microservices with Spring Cloud Gateway

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ธ.ค. 2024

ความคิดเห็น •

  • @MarcinOgrodniczak
    @MarcinOgrodniczak ปีที่แล้ว +5

    Its really good presentation and speech. Live coding generally its wired experience, live coding on Spring One is mind blowing. Well done

  • @mandarkulkarni7675
    @mandarkulkarni7675 ปีที่แล้ว

    Very Good Demo. @Spring Team, can you please include a link to this video in Cloud Gateway's reference docs.
    Also, for the next demo, if you can include an example of OIDC authentication with cloud gateway, that will be great.

  • @sachin.tandon
    @sachin.tandon 2 หลายเดือนก่อน

    Hi, I have a Spring BFF, that has a Circuit Breaker. But I've also put the Spring BFF in an AWS Auto-scaling Group. How can I get the circuit breakers in each bff instance to share a common state, e.g. in Redis, so that the state across each one is not inconsistent?

  • @snehalkolte3765
    @snehalkolte3765 ปีที่แล้ว +2

    Can you provide me repository link for this demo?

  • @rodgarcialima
    @rodgarcialima ปีที่แล้ว

    Incredible demo, thanks for sharing.

  • @francesco_gramazio
    @francesco_gramazio 2 ปีที่แล้ว +5

    Awesome stuff as always;
    off-topic: I would like to buy the t-shirt the girl is wearing, please tell me there's a link to buy it

  • @silentsudo
    @silentsudo 2 ปีที่แล้ว +2

    Its powerful i am using it for prod now 🤗

  • @Anbu_Sampath
    @Anbu_Sampath 2 ปีที่แล้ว +1

    Nice presentation.

  • @JayaKumarG-b4u
    @JayaKumarG-b4u 5 หลายเดือนก่อน

    👏👏👏

  • @hkkabir2024
    @hkkabir2024 ปีที่แล้ว

    just know this gateway things such a wonderful way

  • @light.yagami787
    @light.yagami787 ปีที่แล้ว

    This is just amazing!

  • @leagueoflegendsbestmoments8865
    @leagueoflegendsbestmoments8865 ปีที่แล้ว +1

    CORS is holding my family hostage please help

  • @heapsofttech
    @heapsofttech ปีที่แล้ว

    which http command line tool is she using ?

  • @bilal966
    @bilal966 2 ปีที่แล้ว +1

    Hi,
    May i know what is the purpose of the -Host under predicate? why we need host ? why we are passing as parameter while hitting from client?

    • @abelsalgadoromero4402
      @abelsalgadoromero4402 2 ปีที่แล้ว +3

      Host is just another tool you can use, not mandatory, and its use deppends on your use case. Keep in mind 'predicates' define what route will be applied (first one to match all predicates is selected). Typical examples only use Path which allows you to configure the filters based on the destination, but adding Host is interesting since it would allow you to apply different filters based on the client origin. You could distinguish for instance traffic comming from within or without your datacenter, but this is just a example from top of my mind. The official docs list all predicates available if you are curious about all possibilities.

    • @sebastienros
      @sebastienros 2 ปีที่แล้ว +3

      @@abelsalgadoromero4402 "apply different filters based on the client origin", I believe it's based on the request destination instead. Imagine your gateway proxies some systems hosted on different domains.

    • @bilal966
      @bilal966 ปีที่แล้ว +1

      @@abelsalgadoromero4402 nice explanation . it really make sense.