Demo Micronaut application written in Java that integrates with Kafka. The application consumes events from an inbound topic, and emits an outbound event for each.
Figure 1: Micronaut application with Kafka
Demonstrates using both a standard JVM-based application and a native image using GraalVM. GraalVM compiles the Java application ahead of time into a platform-specific native binary executable. This native executable does not require a Java runtime environment to execute. Instead, it can be executed directly on the target platform. This can lead to faster startup times and reduced memory footprint compared to running on the JVM.
The companion project, with the application written in Kotlin instead of Java, is available here: https://github.com/lydtechconsulting/micronaut-kafka-kotlin
The project requires Java 21 to build.
Start the Kafka and Zookeeper Docker containers:
docker-compose up -d
Build and test the Micronaut application, and then run, with:
./gradlew clean test
./gradlew run
Alternatively, following tests, build a native executable with GraalVM (version 21) - install instructions - and then run the executable:
./gradlew clean test
./gradlew nativeCompile
./gradlew nativeRun
The standard test
task is used as using the @MicronautTest
annotation on the integration tests is not compatible with Kotlin/Native.
The integration tests use the kafka-junit
library's in-memory Kafka broker to test the application's integration with the broker.
Check application health:
curl localhost:9001/health
Jump onto the Kafka docker container and produce a demo-inbound message:
docker exec -ti kafka kafka-console-producer \
--topic demo-inbound-topic \
--broker-list kafka:29092
Now enter the message:
{"id": "2c48eabf-35b0-4f43-8ff4-d123471ecdfb", "data": "my-data"}
The demo-inbound message is consumed by the application, which emits a resulting demo-outbound message.
Check for the emitted demo-outbound message:
docker exec -ti kafka kafka-console-consumer \
--topic demo-outbound-topic \
--bootstrap-server kafka:29092 \
--from-beginning
Output:
{"id":"368df778-473b-461c-9cc0-943f18c7b07e","data":"Processed data: my-data"}
The tests demonstrate sending events to a dockerised Kafka that are consumed by the dockerised application, resulting in outbound events being published.
For more on the component tests see: https://github.com/lydtechconsulting/component-test-framework
First ensure the Project module paths are set to Inherit project compile output path
to ensure the fat jar is built in ./build/libs
. Then build the Micronaut application jar, followed by the Docker container:
./gradlew clean build
docker build -t ct/micronaut-kafka-java:latest .
Alternatively, build a native executable with GraalVM, followed by the Docker container:
./gradlew clean nativeCompile
./gradlew dockerBuildNative
Run component tests:
./gradlew componentTest --rerun-tasks
Run tests leaving containers up:
./gradlew componentTest --rerun-tasks -Dcontainers.stayup=true
Note that --rerun-tasks
is required for subsequent runs when no change has happened between test runs.
Manual clean up (if left containers up):
docker rm -f $(docker ps -aq)