diff --git a/1.2.x/multi/multi__introduction.html b/1.2.x/multi/multi__introduction.html
index dd9978448..e8f6c295b 100644
--- a/1.2.x/multi/multi__introduction.html
+++ b/1.2.x/multi/multi__introduction.html
@@ -280,18 +280,4 @@ dependencies {
compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit"
}
In order not to pick versions by yourself it’s much better if you add the dependency management via -the Spring BOM | |
Add the dependency to | |
Add the dependency to | |
Add a binder (e.g. Rabbit binder) to tell Spring Cloud Stream what it should bind to |
and then just annotate your main class with @EnableZipkinStreamServer annotation:
package example; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.cloud.sleuth.zipkin.stream.EnableZipkinStreamServer; - -@SpringBootApplication -@EnableZipkinStreamServer -public class ZipkinStreamServerApplication { - - public static void main(String[] args) throws Exception { - SpringApplication.run(ZipkinStreamServerApplication.class, args); - } - -}