Skip to content

Instantly share code, notes, and snippets.

@guildenstern70
Last active July 18, 2025 15:17
Show Gist options
  • Select an option

  • Save guildenstern70/0a3ee18c6b1d5632bde919dc49eabec5 to your computer and use it in GitHub Desktop.

Select an option

Save guildenstern70/0a3ee18c6b1d5632bde919dc49eabec5 to your computer and use it in GitHub Desktop.
@ApplicationScoped
@Slf4j
public class ListenerService
{
@Incoming("in-topic")
public void consumeMessage(String kafkaMessage)
{
log.info("Received message: {}", kafkaMessage);
// Here you can process the kafkaMessage as needed
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment