Stream Big Data: How to use Kafka with Spring Boot

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ก.พ. 2025
  • In this tutorial I show you how to use Apache Kafka with Spring Boot and Docker.
    🚀Join the private Devtiro community: go.devtiro.com...
    Links
    🔗 Kafka Docker Compose Quickstart: developer.conf...
    🔗 Code on GitHub: github.com/dev...
    🔗 Code Snippets: github.com/dev...
    Timestamps
    0:00 Intro
    0:06 What is Kafka?
    0:36 Project Setup
    3:35 Running Kafka in Docker
    7:10 Create a Kafka Topic
    08:10 Configuration Properties
    10:18 Putting Messages onto the Topic
    21:18 Consuming Messages from the Topic
    26:14 Next Up

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

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

    Man your video quality is amazing and the content that you're putting out is exactly what I need as a junior dev! Keep going cause I'm sure that sooner or later you'll get a lot a views!

    • @devtiro
      @devtiro  2 ปีที่แล้ว

      Amazing! I'm glad the content helps 💪 And thank you for the kind words!

  • @Jeekster72
    @Jeekster72 หลายเดือนก่อน

    Very relevant and informative. Thanks a lot!

  • @huw1676
    @huw1676 9 หลายเดือนก่อน +1

    Thank you for this video. This was exactly what I was after, and made the whole process of using Kafka with SpringBoot straightforward.

    • @devtiro
      @devtiro  9 หลายเดือนก่อน

      You're very welcome!

    • @OsteenOmega-kr1kd
      @OsteenOmega-kr1kd 3 วันที่ผ่านมา

      is kafka mentioned in this video?

  • @puneetshrivastava8032
    @puneetshrivastava8032 10 หลายเดือนก่อน +1

    Brilliant explanation to get your feet wet in apache Kafka world.. Keep sharing your knowledge.🙌

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

    That was an excellent use of my 26 minutes! thank you so much for this tutorial.

  • @ceydossenidover
    @ceydossenidover 8 หลายเดือนก่อน

    your videos are amazing, thank you so much for putting in the effort and great explanations. subscribed :)

  • @youtux2
    @youtux2 5 หลายเดือนก่อน

    It seems to be showing something interesting on the topic (no pun in tended) of multiple consumers reading the same topic...

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

    Simply superb

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

      Thank you very much! 🙌

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

    Amazing ❤ thanks a lot!

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

      Thank you 🙌

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

    Thank you! Great video

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

      You are most welcome! I'm glad it was helpful 💪

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

    hope you make more video about Spring

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

      I very much plan to 😁

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

    I'm new to the channel, so thank you for being patient with what may be a duplicate question... Why do you call it "Visual Code Studio"?

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

    Thank you😍

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

      You are very welcome!

  • @RN-jo8zt
    @RN-jo8zt ปีที่แล้ว

    mw working on banking domain. so my question
    can we implement kafka in a modular monolith architecture? we have different module with separate db code and we consume/expose via rest api.
    requiremnet:
    Organization created -> event sent out to all interested parties to consume as an event
    Customer updated -> event sent out to all interested parties as an event

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

    Gracias por el video!! Podrías agregar subtítulos en ingles?

  • @sanchez-emir
    @sanchez-emir ปีที่แล้ว

    Buen video!
    se puede reemplazar jackson por google gson?
    que diferencias hay entre estos dos.

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

      Thank you!
      I'm not sure 🤔 Both libs serialize/deserialize objects to/from JSON, but Jackson is used by default in Spring Boot.
      I would recommend sticking to the default dependencies as much as possible.
      If the recipe is tweaked too much, you may find yourself trying to figure out a weird and wonderful error only a few people have encountered.
      It can get pretty boring after a few hours of scouring StackOverflow, trust me 😅