Could not find artifact org.springframework.cloud:spring-cloud-starter-alibaba-nacos-discovery
时间: 2023-11-05 07:59:03 浏览: 252
excel-spring-boot-starter-1.1.1-API文档-中文版.zip
5星 · 资源好评率100%
Could not find artifact org.springframework.cloud:spring-cloud-starter-alibaba-nacos-discovery 错误提示意味着在 Maven 仓库中找不到对应的依赖项。可能原因之一是你没有将 Alibaba Nacos Discovery 的依赖项添加到你的项目中。你需要在你的 pom.xml 文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
```
请确保你的 Maven 仓库已正确配置,并且能够访问到正确的依赖。
阅读全文