resttemplate 相关问题

将此标记用于Spring的RestTemplate,这是一个用于客户端HTTP通信和RESTful原则实施的类。


如何使用对象列表的 requestbody 重新删除映射

我正在尝试连接其他配置文件中的端点,其定义如下: @DeleteMapping(“/人”) 公共ResponseEntity删除Persons(@RequestBody L...

回答 1 投票 0

Postman https 请求有效,但restTemplate 无效

我使用邮递员向 https URL 发出请求,我得到 400 响应和数据,没有任何认证配置。当我使用 RestTemplate 发出相同的请求时,我得到 404 not found with the same u...

回答 1 投票 0

Postman https 请求有效,但 rettemplate 无效

我用邮递员向 https url 发出请求,我得到 400 响应和数据,没有任何认证配置。当我使用 Resttemplate 发出相同的请求时,我得到 404 not found with the same url。邮递员...

回答 1 投票 0

无法解析restTemplate.exchange的响应

我有以下代码来提交http后调用 HttpHeaders headers = new HttpHeaders(); headers.set(TENANT_ID_HEADER, event.getTenantId()); HttpEntity requestEntity = 新的 Http...

回答 1 投票 0

使用 Spring RestTemplate 将查询参数添加到每个 REST 请求

有没有办法在Spring中RestTemplate执行的每个HTTP请求中添加查询参数? Atlassian API 使用查询参数 os_authType 来指定身份验证方法,因此我'...

回答 3 投票 0

如何解决“达到 http.client.requests 的 URI 标签最大数量”警告?

我在我的应用程序上收到此警告。我正在同时读取大约 30 个读者的 rfidtags。每次有标签进入时,我都会访问数据库以查看它是否在其中。我有一个 REST API,我...

回答 2 投票 0

Spring Boot Callable - 401 未经授权:[无正文]

我在发送身份验证请求的 Spring Boot 应用程序中使用 Callable 接口: 公共类 TestCallable 实现 Callable { 测试实体测试实体; 公共测试卡...

回答 1 投票 0

Spring RestTemplate - HttpClientErrorException.getResponseBodyAsString() 返回无法解析的值

我正在使用 Spring RestTemplate,并且在使用 postForEntity() 捕获 HttpClientErrorException 时遇到问题。 Exception 的 getResponseBodyAsString() 方法在 ...

回答 1 投票 0

无法自动装配字段:Spring boot应用程序中的RestTemplate

我在启动期间运行 Spring Boot 应用程序时遇到以下异常: org.springframework.beans.factory.BeanCreationException: 创建名称为“testController”的 bean 时出错: 注入...

回答 8 投票 0

如何更改缓存构造函数中的类型?

我有以下缓存: 公共类FaultTolerantCache 实现LoadingCache { @盖特 私有最终 LoadingCache 缓存实现;

回答 1 投票 0

使用 RestTemplate 设置安全 cookie

我正在尝试使用 RestTemplate 和 Jackson json 转换器调用 Restful JSON 服务。现在为了调用该服务,我需要传入一个安全 cookie。我可以通过使用 URLConne 来实现这一点...

回答 3 投票 0

为什么我的 RestTemplate 超时配置不起作用?

我需要更改 Web 服务调用的超时。 尽管在几个地方进行了配置更改,但我在 30 秒后进入超时状态。 有任何想法吗? 我的配置: 私人静态最终杜拉...

回答 1 投票 0

URI 从路径中删除 /

大家早上好。我有以下代码: 字符串 url = "https://example/example/rest/verify/"; 字符串代码 = "/

回答 2 投票 0

我无法从 JSON 获取字段

我有一个方法如下: @RequestMapping(值=“/天气”) 公共无效 printWeather() 抛出 JsonProcessingException { 字符串 url = mineApiURLwithKey; 字符串 json = RestTempl...

回答 1 投票 0

RestTemplate 与正文一起获取

如何使用rest模板制作get with body? 基于以下问题:通过 JSON 中的 RestTemplate 进行 POST 请求,我尝试通过 HttpEntity 使用正文进行 GET (只需检查是否可能),但是 失败了

回答 4 投票 0

如何使用 RestClient 进行可重试的调用

我想强制 Spring 6.1 RestClient 使用重试机制执行所有 http 调用。 理想情况下,我想复制使用 RestTemplate 和 spring-retry 可以实现的这种行为

回答 1 投票 0

当服务器在 Spring Rest 模板中处理请求时,多部分请求从客户端终止

我有2个服务,服务A,服务B。 服务 A => 用 spring-boot、java 编写 服务 B => 用 quarkus、java 编写。 我正在向服务 A 发出多部分请求。该请求包含 ...

回答 1 投票 0

Springboot运行创建RestTemplate失败(java.lang.ClassNotFoundException: kotlin.jvm.internal.markers.KMappedMarker)

将我的项目升级到 spring-boot-starter-parent 3.2.1 后,在尝试启动 SpringBoot 应用程序时出现以下错误 org.springframework.beans.BeanInstantiationException:失败...

回答 1 投票 0

resttemplate 无法从服务器检索文件的完整数据

我的项目使用的是sping boot 2.3.3.RELEASE。 org.springframework.boot spring-boot-starter-parent <

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.