503 SERVICE_UNAVAILABLE "Unable to find instance for *****"问题
1. 问题描述
在完成网关微服务的配置后,网关能够被Nacos发现并正常运行,但是无法将请求转发到其他微服务。使用Postman进行请求时,返回503错误,而后端控制台并没有显示任何报错信息。在调试日志中发现如下信息:
[NotFoundException: 503 SERVICE_UNAVAILABLE "Unable to find instance for eoffice-forum-user"]
错误截图如下:
2. 解决方案
为了修复该问题,需要在网关微服务中添加负载均衡器依赖,并进行相应配置。
2.1 添加依赖
在网关微服务的pom.xml
文件中添加以下依赖:
<!-- 负载均衡器依赖 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
2.2 修改配置文件
在网关微服务的application.yml
文件中添加如下配置:
spring:
cloud:
loadbalancer:
nacos:
enabled: false
通过以上步骤,可以解决网关无法转发请求到其他微服务的问题。