使用 Java 中的调用构建器,put/post 的唯一选项是一个实体作为它从中获取 json 的对象:
public <T> T put(final Entity<?> entity, final Class<T> responseType)
Run Code Online (Sandbox Code Playgroud)
如果您已经在字符串中包含 json,是否有任何方法可以放置/发布它,而不必将其转换为实体(我们假设只是一个对象)
String payload = "{\"name\":\"hello\"}";
WebTarget webTarget = theHttpClient.target(url);
Invocation.Builder invocationBuilder = webTarget.request(MediaType.APPLICATION_JSON)
.header(HttpUtils.AUTHORISATION_HEADER_NAME, "Bearer " + theAccessToken);
// this outputs the string with slashes, i.e. "{\n\"name\":\"hello\"\n}"; instead of {"name":"hello"}
invocationBuilder.put( Entity.json(theObjectMapper.writeValueAsString(payload)), responseClass);
// this will not compile as payload is not an Entity
invocationBuilder.put(payload, responseClass);
Run Code Online (Sandbox Code Playgroud)
我做了一个快速测试,我认为你的错误来自于你直接在这里调用对象映射器
Entity.json(theObjectMapper.writeValueAsString(payload))
通过快速测试,如果您只是传递有效负载字符串而不调用对象映射器,那么它似乎可以工作
pom.xml
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.28</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>2.28</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.8.3</version>
</dependency>
</dependencies>
Run Code Online (Sandbox Code Playgroud)
测试调用生成器.java
public class testInvocationBuilder
{
public static void main(String[] args)
{
Client client = ClientBuilder.newClient().register(JacksonJaxbJsonProvider.class);
WebTarget webTarget = client.target("http://127.0.0.1:8000");
Invocation.Builder invocationBuilder = webTarget.request(MediaType.APPLICATION_JSON);
Payload p = new Payload();
p.name = "hello-there";
//this serializes the object in the request
Response payloadRsp = invocationBuilder.put(Entity.entity(p, MediaType.APPLICATION_JSON));
System.out.println(payloadRsp);
//this seems to pass through
String payload = "{\"name\":\"hello\"}";
Response stringRsp = invocationBuilder.put(Entity.entity(payload, MediaType.APPLICATION_JSON));
System.out.println(stringRsp);
}
public static class Payload {
public String name;
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
9001 次 |
| 最近记录: |