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.git
The following commit(s) were added to refs/heads/master by this push: new a905067 Polished a905067 is described below commit a90506749420d3e72c6c6ce09d0775897dfdfa05 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Mar 9 17:39:24 2018 +0100 Polished --- .../src/main/resources/archetype-resources/ReadMe.txt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/ReadMe.txt b/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/ReadMe.txt index 8e16528..54e61f3 100644 --- a/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/ReadMe.txt +++ b/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/ReadMe.txt @@ -3,25 +3,27 @@ Spring Boot Example This example shows how to work with the simple Camel application based on the Spring Boot. -The example generates messages using timer trigger, writes them to the standard output and the mock -endpoint (for testing purposes). +The example generates messages using timer trigger, writes them to the standard output +and the mock endpoint (for testing purposes). -This example exposes Jolokia API and Spring Boot actuators endpoints (like metrics) via the webmvc endpoint. We consider -this as the best practice - Spring Boot applications with these API exposed can be easily monitored and managed by the -3rd parties tools. +This example exposes Jolokia API and Spring Boot actuators endpoints (like metrics) via the webmvc endpoint. +We consider this as the best practice - Spring Boot applications with these API exposed can be easily +monitored and managed by 3rd parties tools. This example packages your application as a JAR, but you can also package as a WAR and deploy to servlet containers like Tomcat. You will need to compile this example first: - mvn install + + mvn install To run the example type - mvn spring-boot:run + + mvn spring-boot:run You can also execute the JAR directly: - java -jar target/${artifactId}-${version}.jar + java -jar target/${artifactId}-${version}.jar You will see the message printed to the console every second. -- To stop receiving notification emails like this one, please contact davscl...@apache.org.