@RestController public class EventProducerController { private final KafkaTemplate<String, String> kafkaTemplate; @Autowired public EventProducerController(KafkaTemplate<String, String> kafkaTemplate) { this.kafkaTemplate = kafkaTemplate; } @GetMapping("/message/{message}") public String trigger(@PathVariable String message) { kafkaTemplate.send("messageTopic", message); return "Hello, Your message has been published: " + message; } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter