This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git
The following commit(s) were added to refs/heads/master by this push:
new d2f04da Camel 16132 add description to widget gadget readme (#32)
d2f04da is described below
commit d2f04dae36ec4fed074c4d35d21c27edcd212420
Author: metters <[email protected]>
AuthorDate: Sat Feb 6 08:33:24 2021 +0100
Camel 16132 add description to widget gadget readme (#32)
* [CAMEL-16132] Add description to empty README.adoc
* [CAMEL-16132] Improve the README.adoc
Co-authored-by: Matthias Streidel <[email protected]>
---
spring-boot-widget-gadget/README.adoc | 49 +++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/spring-boot-widget-gadget/README.adoc
b/spring-boot-widget-gadget/README.adoc
index e69de29..9ba1a08 100644
--- a/spring-boot-widget-gadget/README.adoc
+++ b/spring-boot-widget-gadget/README.adoc
@@ -0,0 +1,49 @@
+== Spring Boot Widget Gadget Example
+
+=== Introduction
+
+This example demonstrates the widget and gadget example from EIP book, running
on Spring Boot.
+
+The example with a similar setup (e.g. without rabbitmq) can be found in this
illustration
https://camel.apache.org/components/latest/eips/composed-message-processor.html[here]:
+
+image::https://camel.apache.org/components/latest/eips/_images/eip/DistributionAggregate.gif[link="https://camel.apache.org/components/latest/eips/composed-message-processor.html"]
+
+=== Configuration
+
+Before the application can run, rabbitmq must be started. This can be done
with docker, executing the following command:
+
+[source,sh]
+----
+$ docker run -d -p 5672:5672 -p 15672:15672 --name my-rabbit
rabbitmq:3-management
+----
+
+The port can be configured as desired, but do not forget to match the
configured port number in your `application.properties`-file!
+
+=== Build
+
+After that, you can build this example using:
+
+[source,sh]
+----
+$ cd spring-boot-widget-gadget
+$ mvn package
+----
+
+=== Run
+
+You can run this example with Maven using:
+
+[source,sh]
+----
+$ mvn spring-boot:run
+----
+
+=== Help and contributions
+
+If you hit any problem using Camel or have some feedback, then please
+https://camel.apache.org/support.html[let us know].
+
+We also love contributors, so
+https://camel.apache.org/contributing.html[get involved] :-)
+
+The Camel riders!
\ No newline at end of file