Could not find artifact org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:pom
version不对,添加version
例如:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
在项目中遇到找不到org.springframework.cloud:spring-cloud-starter-netflix-eureka-client的pom依赖问题,可能是因为版本不正确。解决方案是明确指定版本,例如使用2.2.1.RELEASE版本的依赖。需在pom.xml文件中添加对应的dependency标签并设置正确版本。
4812

被折叠的 条评论
为什么被折叠?



