diff --git a/README.adoc b/README.adoc index 408a9a2..dbe280a 100644 --- a/README.adoc +++ b/README.adoc @@ -27,3 +27,8 @@ More details are available at link:spring-cloud-stream-schema-registry-integrati This sample app shows how to write batch consumers and producers using spring Cloud Stream and Apache Kafka. More details are at link:batch-producer-consumer/README.adoc[README]. +==== Kafka Binder Native App + +This sample shows how to run the same Spring Cloud Stream Kafka based application on the normal JVM, AOT-only mode on the JVM and finally, natively on graalvm. +For more information, please see link:kafka-binder-native-app/README.adoc[README]. + diff --git a/kafka-binder-native-app/README.adoc b/kafka-binder-native-app/README.adoc index 34a6ff4..6388ce2 100644 --- a/kafka-binder-native-app/README.adoc +++ b/kafka-binder-native-app/README.adoc @@ -22,9 +22,9 @@ For example, when running this app, we used the following JVM. ``` java -version -openjdk version "19.0.1" 2022-10-18 -OpenJDK Runtime Environment GraalVM CE 22.3.0 (build 19.0.1+10-jvmci-22.3-b08) -OpenJDK 64-Bit Server VM GraalVM CE 22.3.0 (build 19.0.1+10-jvmci-22.3-b08, mixed mode, sharing) +openjdk version "20.0.2" 2023-07-18 +OpenJDK Runtime Environment GraalVM CE 20.0.2+9.1 (build 20.0.2+9-jvmci-23.0-b15) +OpenJDK 64-Bit Server VM GraalVM CE 20.0.2+9.1 (build 20.0.2+9-jvmci-23.0-b15, mixed mode, sharing) ``` ==== Testing in regular JVM mode diff --git a/kafka-binder-native-app/pom.xml b/kafka-binder-native-app/pom.xml index 0ceaf54..4d1ab0e 100644 --- a/kafka-binder-native-app/pom.xml +++ b/kafka-binder-native-app/pom.xml @@ -11,7 +11,7 @@ com.example kafka-binder-native-app - 0.0.1 + 0.0.1-SNAPSHOT kafka-binder-native-app Native Sample App based on Kafka Binder