问题
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