This is an automated email from the ASF dual-hosted git repository. pascalschumacher 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 872b826 Fix links to Spring Boot examples. 872b826 is described below commit 872b82636f393d77c3da08a8c0e36d6ebc637185 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sat Feb 15 19:18:51 2020 +0100 Fix links to Spring Boot examples. --- components/camel-opentracing/src/main/docs/opentracing.adoc | 4 ++-- components/camel-zipkin/src/main/docs/zipkin.adoc | 2 +- core/camel-core-engine/src/main/docs/eips/hystrix-eip.adoc | 2 +- core/camel-core-engine/src/main/docs/eips/resilience4j-eip.adoc | 2 +- docs/components/modules/ROOT/pages/opentracing.adoc | 4 ++-- docs/components/modules/ROOT/pages/zipkin.adoc | 2 +- docs/user-manual/modules/ROOT/pages/hystrix-eip.adoc | 2 +- docs/user-manual/modules/ROOT/pages/resilience4j-eip.adoc | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/components/camel-opentracing/src/main/docs/opentracing.adoc b/components/camel-opentracing/src/main/docs/opentracing.adoc index b9baa9d..03f8cb6 100644 --- a/components/camel-opentracing/src/main/docs/opentracing.adoc +++ b/components/camel-opentracing/src/main/docs/opentracing.adoc @@ -91,11 +91,11 @@ compatible with OpenTracing Java API version 0.31 or higher. The `Tracer` used will be implicitly loaded from the camel context `Registry` or using the `ServiceLoader`. -How this agent is used will be specific to how you execute your application. _Service2_ in the https://github.com/apache/camel-examples/tree/master/examples/camel-example-opentracing[camel-example-opentracing] downloads the agent into a local folder and then uses the `exec-maven-plugin` to launch the service with the `-javaagent` command line option. +How this agent is used will be specific to how you execute your application. _Service2_ in the https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-opentracing[camel-example-spring-boot-opentracing] downloads the agent into a local folder and then uses the `exec-maven-plugin` to launch the service with the `-javaagent` command line option. == Example You can find an example demonstrating the three ways to configure OpenTracing here: -https://github.com/apache/camel-examples/tree/master/examples/camel-example-opentracing[camel-example-opentracing] +https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-opentracing[camel-example-spring-boot-opentracing] include::camel-spring-boot::page$opentracing-starter.adoc[] diff --git a/components/camel-zipkin/src/main/docs/zipkin.adoc b/components/camel-zipkin/src/main/docs/zipkin.adoc index c4b1269..a0d9ee4 100644 --- a/components/camel-zipkin/src/main/docs/zipkin.adoc +++ b/components/camel-zipkin/src/main/docs/zipkin.adoc @@ -275,6 +275,6 @@ exchange.setProperty("camel.client.customtags", customTags); If you are using Spring Boot then you can add the `camel-zipkin-starter` dependency, and turn on zipkin by annotating the main class with `@CamelZipkin`. You can then configure camel-zipkin in the `application.properties` file where you can configure the hostname and port number for the Zipkin Server, and all the other options as listed in the options table above. -You can find an example of this in the https://github.com/apache/camel-examples/tree/master/examples/camel-example-zipkin[camel-example-zipkin] +You can find an example of this in the https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-zipkin[camel-example-spring-boot-zipkin] include::camel-spring-boot::page$zipkin-starter.adoc[] diff --git a/core/camel-core-engine/src/main/docs/eips/hystrix-eip.adoc b/core/camel-core-engine/src/main/docs/eips/hystrix-eip.adoc index fe54e16..0c9d6f0 100644 --- a/core/camel-core-engine/src/main/docs/eips/hystrix-eip.adoc +++ b/core/camel-core-engine/src/main/docs/eips/hystrix-eip.adoc @@ -109,7 +109,7 @@ See xref:onFallback-eip.adoc[onFallback]. == Other examples -You can find an example with the source code: https://github.com/apache/camel-examples/tree/master/examples/camel-example-hystrix[camel-example-hystrix]. +You can find an example with the source code: https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-hystrix[camel-example-spring-boot-hystrix]. == Using Hystrix with Spring Boot diff --git a/core/camel-core-engine/src/main/docs/eips/resilience4j-eip.adoc b/core/camel-core-engine/src/main/docs/eips/resilience4j-eip.adoc index 5dc8165..53d89b7 100644 --- a/core/camel-core-engine/src/main/docs/eips/resilience4j-eip.adoc +++ b/core/camel-core-engine/src/main/docs/eips/resilience4j-eip.adoc @@ -109,7 +109,7 @@ See xref:onFallback-eip.adoc[onFallback]. == Other examples -You can find an example with the source code: https://github.com/apache/camel-examples/tree/master/examples/camel-example-resilience4j[camel-example-resilience4j]. +You can find an example with the source code: https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-resilience4j[camel-example-spring-boot-resilience4j]. == Using Resilience4j with Spring Boot diff --git a/docs/components/modules/ROOT/pages/opentracing.adoc b/docs/components/modules/ROOT/pages/opentracing.adoc index 4005ee9..7c09841 100644 --- a/docs/components/modules/ROOT/pages/opentracing.adoc +++ b/docs/components/modules/ROOT/pages/opentracing.adoc @@ -92,11 +92,11 @@ compatible with OpenTracing Java API version 0.31 or higher. The `Tracer` used will be implicitly loaded from the camel context `Registry` or using the `ServiceLoader`. -How this agent is used will be specific to how you execute your application. _Service2_ in the https://github.com/apache/camel-examples/tree/master/examples/camel-example-opentracing[camel-example-opentracing] downloads the agent into a local folder and then uses the `exec-maven-plugin` to launch the service with the `-javaagent` command line option. +How this agent is used will be specific to how you execute your application. _Service2_ in the https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-opentracing[camel-example-spring-boot-opentracing] downloads the agent into a local folder and then uses the `exec-maven-plugin` to launch the service with the `-javaagent` command line option. == Example You can find an example demonstrating the three ways to configure OpenTracing here: -https://github.com/apache/camel-examples/tree/master/examples/camel-example-opentracing[camel-example-opentracing] +https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-opentracing[camel-example-spring-boot-opentracing] include::camel-spring-boot::page$opentracing-starter.adoc[] diff --git a/docs/components/modules/ROOT/pages/zipkin.adoc b/docs/components/modules/ROOT/pages/zipkin.adoc index 372f779..ab98c5c 100644 --- a/docs/components/modules/ROOT/pages/zipkin.adoc +++ b/docs/components/modules/ROOT/pages/zipkin.adoc @@ -276,6 +276,6 @@ exchange.setProperty("camel.client.customtags", customTags); If you are using Spring Boot then you can add the `camel-zipkin-starter` dependency, and turn on zipkin by annotating the main class with `@CamelZipkin`. You can then configure camel-zipkin in the `application.properties` file where you can configure the hostname and port number for the Zipkin Server, and all the other options as listed in the options table above. -You can find an example of this in the https://github.com/apache/camel-examples/tree/master/examples/camel-example-zipkin[camel-example-zipkin] +You can find an example of this in the https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-zipkin[camel-example-spring-boot-zipkin] include::camel-spring-boot::page$zipkin-starter.adoc[] diff --git a/docs/user-manual/modules/ROOT/pages/hystrix-eip.adoc b/docs/user-manual/modules/ROOT/pages/hystrix-eip.adoc index a3a992c..fa4e0b3 100644 --- a/docs/user-manual/modules/ROOT/pages/hystrix-eip.adoc +++ b/docs/user-manual/modules/ROOT/pages/hystrix-eip.adoc @@ -110,7 +110,7 @@ See xref:onFallback-eip.adoc[onFallback]. == Other examples -You can find an example with the source code: https://github.com/apache/camel-examples/tree/master/examples/camel-example-hystrix[camel-example-hystrix]. +You can find an example with the source code: https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-hystrix[camel-example-spring-boot-hystrix]. == Using Hystrix with Spring Boot diff --git a/docs/user-manual/modules/ROOT/pages/resilience4j-eip.adoc b/docs/user-manual/modules/ROOT/pages/resilience4j-eip.adoc index dfda445..239dd92 100644 --- a/docs/user-manual/modules/ROOT/pages/resilience4j-eip.adoc +++ b/docs/user-manual/modules/ROOT/pages/resilience4j-eip.adoc @@ -110,7 +110,7 @@ See xref:onFallback-eip.adoc[onFallback]. == Other examples -You can find an example with the source code: https://github.com/apache/camel-examples/tree/master/examples/camel-example-resilience4j[camel-example-resilience4j]. +You can find an example with the source code: https://github.com/apache/camel-spring-boot/tree/master/examples/camel-example-spring-boot-resilience4j[camel-example-spring-boot-resilience4j]. == Using Resilience4j with Spring Boot