我对 Spring Boot 和 Spring Cloud 很陌生,并试图启动客户商店示例。我让微服务运行,但每次我尝试启动 UI 时
spring run app.groovy
我得到以下异常:
startup failed:
file:/C:/Workspace/git/customers-stores/customers-stores-ui/app.groovy: 1: unable to resolve class EnableZuulProxy , unable to find class for annotation
@ line 1, column 1.
@EnableZuulProxy
^
1 error
好的,这似乎是一个缺失的依赖项。但我不知道如何添加这种依赖关系。我试过:
@Grab("org.springframework.cloud:spring-cloud-netflix-core:1.0.0.BUILD-SNAPSHOT")
但这不会改变任何事情。有任何想法吗?提前致谢。