当我尝试通过WebClient发送GET请求时,发生了错误io.netty.channel.AbstractChannel $ AnnotatedConnectException的响应:连接被拒绝:localhost /
//hostname = "localhost/127.0.0.1:8081"
//contextPath = "user-service"
@Bean
public WebClient userWebclient(@Value("${service.user.hostname}") final String hostname,
@Value("${service.user.contextPath}") final String contextPath) {
return WebClient
.builder()
.baseUrl(hostname + contextPath)
.build();
}
控制器
private final WebClient userWebclient;
@GetMapping(value = "/user/{id}", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public Mono<String> getUserById(@NotNull @PathVariable String userId) {
userWebclient.
return userWebclient.get()
.uri("/UserMock/user/" + userId)
.header("Accept", "application/json")
.header("Authorization", "Bearer =........")
.exchange()
.flatMap(response -> response.bodyToMono(String.class));
}
错误信息
io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:8081
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:340)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:665)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:612)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:529)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:491)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:905)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.net.ConnectException: Connection refused
... 10 common frames omitted
在主机中使用
hostname = "localhost:8081"
要么
hostname = "127.0.0.1:8081"
代替
hostname = "localhost/127.0.0.1:8081"
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。