Eureka restTemplate访问超时
程序员文章站
2023-03-31 16:09:23
错误代码 错误现象:明明在Eureka上注册成功的服务,但无法通过服务名进行访问 网上的解决方案: 网上有一种解决方案是说在restTemplate上面加注解 但是我加了没有作用,依然timeout 调试源码,发现问题: 调试源码后发现sushiBase这个服务,在eureka上注册的竟然是一个内网 ......
错误代码
i/o error on get request for "http://sushibase/v1/publich/authorize": connection timed out: connect; nested exception is java.net.connectexception: connection timed out: connect
错误现象:明明在eureka上注册成功的服务,但无法通过服务名进行访问
网上的解决方案:
网上有一种解决方案是说在resttemplate上面加注解
@loadbalanced
但是我加了没有作用,依然timeout
调试源码,发现问题:
调试源码后发现sushibase这个服务,在eureka上注册的竟然是一个内网ip
最终解决方案
在eureka客户端的配置文件中加入以下内容:
# 指定此实例的ip
eureka.instance.ip-address=
# 注册时使用ip而不是主机名
eureka.instance.prefer-ip-address=
true
参考:https://www.cnblogs.com/moonandstar08/p/7571610.html