2016-11-20 111 views
1

我無法啓動Spring雲ZipKin服務器,它給出了下面提到的異常。無法啓動Spring雲ZipKin服務器

BeanCreationException:無法創建粘合劑廠,在classpath

沒有發現META-INF/spring.binders資源下面是我的Maven依賴 -

<dependencies> 
     <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-starter</artifactId> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework.cloud</groupId> 
      <artifactId>spring-cloud-sleuth-zipkin</artifactId> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework.cloud</groupId> 
      <artifactId>spring-cloud-sleuth-zipkin-stream</artifactId> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-starter-test</artifactId> 
      <scope>test</scope> 
     </dependency> 
</dependencies> 

而且我的應用程序啓動類看起來如下。

@SpringBootApplication 
@EnableZipkinStreamServer 
public class ZipkinApplication { 
    public static void main(String[] args) { 
      SpringApplication.run(ZipkinApplication.class, args); 
    } 
} 

任何幫助,高度讚賞。

回答