gpt4 book ai didi

java - Resttemplate 404 未找到

转载 作者:行者123 更新时间:2023-11-30 02:07:23 27 4
gpt4 key购买 nike

我正在尝试通过这种方式将帖子发送到休息服务:

 RestTemplate restTemplate = new RestTemplate();
String url = "http://myadress/rest/student.php";
HttpHeaders headers = new HttpHeaders();
headers.add("TIMESTAMP", time);
headers.add("BASEKEY", hexIv);
headers.add("ACCESSKEY",accessKey);
headers.add("SIGNATURE",signature);
headers.setContentType(MediaType.APPLICATION_JSON);
HttpEntity<String> entity = new HttpEntity<String>(studentsEncrypted,headers);
String answer = restTemplate.postForObject(url, entity, String.class);

Exception in thread "main" org.springframework.web.client.HttpClientErrorException: 404 Not Found

此错误是否仅在未找到目的地的服务时触发?

最佳答案

不,此异常 (org.springframework.web.client.HttpClientErrorException) 专用于表示客户端错误响应的所有 HTTP 响应代码(4xx 系列)。参见例如:https://developer.mozilla.org/en-US/docs/Web/HTTP/Status 。所以也可能是授权错误。

关于java - Resttemplate 404 未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51022554/

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