How to send Kafka message in SpringBoot

preview_player
Показать описание
Join this channel to get access to perks:

Sample code snippet to send message:

@Autowired
KafkaTemplate<String,String> template;

@GetMapping("/test")
public String hello() {
}
Рекомендации по теме
Комментарии
Автор

<dependency>


</dependency>


= localhost:9092
group_id
= earliest

=

= localhost:9092
=
=



@Autowired
KafkaTemplate<String, String> template;

@GetMapping("/test")
public String hello() {
template.send("testtopic1", "hello world from MS Ricky!! -> "+LocalDateTime.now());
return "hello "+ LocalDateTime.now();
}

fvhiveproductionsbyLadyAga
welcome to shbcf.ru