gpt4 book ai didi

spring - RestTemplate, Spring boot , POST

转载 作者:行者123 更新时间:2023-12-03 15:16:45 25 4
gpt4 key购买 nike

我在 localhost:8086/addMessage 有一个 rest api,当我使用 POSTMAN 测试它时它可以工作。但是当我想在客户端集成这个 api 时,它返回:

java.net.URISyntaxException: Expected scheme-specific part at index 10: localhost:
at java.net.URI$Parser.fail(URI.java:2848) ~[na:1.8.0_171] error:

这是我调用api的方法:
  public void addOrder(Message orders) throws  Exception
{ RestTemplate restTemplate = new RestTemplate();
String resp = restTemplate.postForObject(
"localhost:8086/addMessage",
orders,
String.class);
}

我该如何解决。

最佳答案

将“http”方案添加到您的网址,

http://localhost:8086/addMessage

关于spring - RestTemplate, Spring boot , POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53791761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com