'org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder' that could not be found.
时间: 2023-10-06 17:05:19 浏览: 104
org.springframework.web的jar包.zip
5星 · 资源好评率100%
这个错误可能是因为您没有正确地导入相关的依赖项。请确保您的项目中已经包含了`spring-cloud-starter-gateway`依赖项,可以在项目的pom.xml中添加以下依赖项:
```xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
```
如果您已经添加了这个依赖项,并且仍然看到这个错误,请尝试重新导入Maven或Gradle项目,以确保所有依赖项都已正确安装。
阅读全文