Spring Initializer - Zipkin Server missing?

北慕城南 提交于 2019-12-05 00:10:21

问题


Can't see Zipkin Server when using Spring Initializer . Has it been removed? What is the alternative?


回答1:


Zipkin Server is not part of Spring initializers. You have to use the official release of the Zipkin server

https://github.com/openzipkin/zipkin#quick-start

And custom servers are not supported anymore meaning you can't use @EnableZipkinServer anymore since 2.7

https://github.com/openzipkin/zipkin#quick-start




回答2:


Lately I have been trying the same and couldn't find that option in initializer. I am just posting this if anyone encounters the same issues and lands on this page. You can refer below sample GitHub project which is consists of four micro services ( zipkin server, client, rest service, and Eureka ) using Edgware release with latest version of sleuth.

Sample Zipkin Server/Client




回答3:


Spring has deprecated the Zipkin UI and Zipkin server from Spring Boot. You will need to setup external Zipkin server or add the pom as specified above.

You can refer to below URL to setup Zipkin server:

http://onlyfullstack.blogspot.com/2018/07/setting-up-zipkin-server.html

Below URL to integrate Zipking with microservices :

https://onlyfullstack.blogspot.com/2018/09/microservices-with-spring-sleuth-and-zipkin.html



来源:https://stackoverflow.com/questions/45046528/spring-initializer-zipkin-server-missing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!