Pruning batch consumer/producer sample app
This commit is contained in:
@@ -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].
|
||||
|
||||
|
||||
@@ -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.
|
||||
@@ -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>
|
||||
@@ -20,8 +20,6 @@
|
||||
<module>confluent-schema-registry-integration-producer2</module>
|
||||
</modules>
|
||||
|
||||
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
||||
Reference in New Issue
Block a user