Last active
July 18, 2025 15:17
-
-
Save guildenstern70/0a3ee18c6b1d5632bde919dc49eabec5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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