Pruning batch consumer/producer sample app

This commit is contained in:
Soby Chacko
2023-08-29 15:13:23 -04:00
parent 46bc2db3be
commit b58e60176a
8 changed files with 9 additions and 6 deletions

View File

@@ -22,3 +22,8 @@ You can find more details at link:confluent-schema-registry-integration/README.a
These samples show how Spring Cloud Stream Schema Registry can help with schema evolution use cases.
More details are available at link:spring-cloud-stream-schema-registry-integration/README.adoc/[README].
==== Batch Producer Consumer
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].

View File

@@ -1,4 +1,4 @@
== Spring Function Batch Producer Consumer
== Spring Cloud Stream Batch Producer Consumer
This sample application demonstrates a Spring Cloud Stream functional interface implementation of batch consuming and batch producing messages.
@@ -33,7 +33,7 @@ To build the app simply execute the following command in the base directory:
==== Start the streams app
[source,bash]
----
java -jar target/stream-function-batch-producer-consumer-0.0.1-SNAPSHOT.jar
java -jar target/batch-producer-consumer-0.0.1-SNAPSHOT.jar
----
The application should automatically begin executing. All messages are printed in real-time as received by different parts of the application.

View File

@@ -10,9 +10,9 @@
</parent>
<groupId>com.example</groupId>
<artifactId>stream-function-batch-producer-consumer</artifactId>
<artifactId>batch-producer-consumer</artifactId>
<version>0.0.1</version>
<name>stream-function-batch-producer-consumer</name>
<name>batch-producer-consumer</name>
<description>Sample app using stream functions with batch producer and consumer using kafka</description>
<properties>
<java.version>17</java.version>

View File

@@ -20,8 +20,6 @@
<module>confluent-schema-registry-integration-producer2</module>
</modules>
<build>
<pluginManagement>
<plugins>