Complete playlist at kzbin.info/aero/PLGRDMO4rOGcNLwoack4ZiTyewUcF6y6BU
@sambhav072 жыл бұрын
Hi, I think a small change is required here. kafkaTemplate.send is an aynchronous call so /publish endpoint will return ok response even before kafka message gets produced/published to the topic. Also in case of failure also endpoint will return ok. Future object should be handled and returned as response of endpoint.
@hendrapurwanto232 жыл бұрын
thank you master for sharing your knowledge, success always master..
@bugrae93412 жыл бұрын
This serie is perfect. Thanks a lot for your efforts. Sometimes I hear your baby voice and I hope best and healty life for your baby :)
@JavaGuides2 жыл бұрын
Thanks a lot. Your comment made my day.
@bollapraveen92702 жыл бұрын
Hi sir,your teaching is phenomenal....if you don't mind can you post the videos on springboot microservces(1demo project)..
@ravindrabangalore29902 жыл бұрын
nice presentation , thank you
@aibardulatov10 ай бұрын
I have error when hit url: Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Tue Apr 09 12:49:00 QYZT 2024 There was an unexpected error (type=Internal Server Error, status=500).
@Andrzej3935 Жыл бұрын
Thank you very much
@Vithal_Nivargi2 жыл бұрын
Amazing series ❤️ thanks
@sleeksilk4972 ай бұрын
Why are we using Constructor-based injection?
@raj_kundalia Жыл бұрын
Shouldn't the publish call semantically be POST? Note: Oh got it, you kept it for simplicity to hit the endpoint from browser.
@patronBln284 ай бұрын
Same thought here, its worth to mention it, so that beginners are not confused. You would always use a POST request, if you want to send data.
@shubhampatel58042 жыл бұрын
Superb!
@ghostnull640727 күн бұрын
i am getting below error when i try to read messages from kafka Cmd: .\bin\windows\kafka-console-consumer.bat --topic test --from-beginning --bootstrap-server localhost:9092 The syntax of the command is incorrect.
@Das.Kleine.Krokodil2 жыл бұрын
Very good!
@sowjanyapuppala52998 ай бұрын
I have tried this tutorial step by step. Now the Apache Kafka version is moved to a higher version 3.7.0. From spring boot application, I am able to create javaguides topic. But When I try to send message to this topic from rest endpoint or console-consumer, I get erorr "Kafka Error org.apache.kafka.common.errors.NotLeaderOrFollowerException NOT_LEADER_OR_FOLLOWER". Kindly let me know how to debug what is missing in broker/topic/partition config. Is there any blog / message gropu / stackoverflow thread where I can see solutions to the problmes faced
@deepjay9472 Жыл бұрын
Hello sir, the webpage is showing whitelabel error ... How to fix it
@gaurirahul21452 жыл бұрын
Hello Sir I am using Eclipse IDE , application running smoothly but when I am running your API its showing me error Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback.
@deepjay9472 Жыл бұрын
Same here, did you find solution
@scitechplusexplorer2484 Жыл бұрын
start zookeeper, then broker, then fire msg. ensure url is right syntax.
@naglakshmimekala6033 Жыл бұрын
me also facing same Problem, did you find any solution
@bhanuPrakash-yo5wd Жыл бұрын
did you got solution? facing same issue , got struck@@naglakshmimekala6033
@nitingakhar7751 Жыл бұрын
Some of the things to check, make sure URL is correct : localhost:8080/api/v1/kafka/publish?message=hello world, Also, did you check with some tool like postman?
@vjs17302 жыл бұрын
Does this SpringBootApplication runs the zookeeper at the background?
@newtanagmukhopadhyay4716 Жыл бұрын
yes.
@AnuragAnkit-t8k11 ай бұрын
I am getting this error :- when I run my application: - org.apache.kafka.common.errors.TimeoutException: The AdminClient thread has exited. Call: fetchMetadata when I tried to hit url : - org.apache.kafka.common.errors.TimeoutException: Topic javaguides not present in metadata after 60000 ms. Any Solution for that?
@azadsingh21432 жыл бұрын
Hi Sir, Can you please explain, what is getting injected in KafkaTemplate? As per my understanding, KafkaTemplate requires KafkaFactory, and KafkaFactory requires properties. How KafkaTemplate is getting properties, directly from Application.properties?
@JavaGuides2 жыл бұрын
Spring boot auto configuration will configure kafka template automatically. We don't have do it manually. I have explained this while configuring kafka in spring boot application
@azadsingh21432 жыл бұрын
@@JavaGuides thank you, got it.
@I_am_nus Жыл бұрын
Kafka producer is producing duplicate message, how to deal with that?
@patronBln284 ай бұрын
Consume the messages double time 😁 or just google and you will find something on stackoverflow in most cases.
@nareshyadav57162 жыл бұрын
Sir can u please send me application.property file