从 Play 2.3.7 上的 Promise<JsonNode> 检索 HTTP 状态
Retrieve HTTP status from Promise<JsonNode> on Play 2.3.7
在我们的项目中,我们使用JSON进行前后端之间的数据传输。
基本上我们通过准备 WSRequestHolder 创建请求,就像 play doc 告诉的那样 (https://www.playframework.com/documentation/2.3.7/JavaWS)
然后 posting 一个 json 字符串。
然后映射 WSResponse "asJson" 作为 Promise 返回。
但与 WSResponse 不同的是,JsonNode 不包含从后端返回的 http 状态,Promise 也不包含。
我们需要在稍后的代码中区分不同的状态代码以进行正确的响应处理。
到目前为止,我们得到了一个工厂 class,它提供准备好的 objects,其中 WSRequestHolder 包含 url、header 和内容类型集,post json 数据。此外,我们在工厂中实现了 "post",如下所示:
/**
* Posts the given json body to the specified url
*
* @param body Body of JSON node to post
* @return Promised response from post call
*/
@Override
public F.Promise<JsonNode> post(JsonNode body) {
try {
return wsRequestHolder.post(body).map(WSResponse::asJson).recover(new F.Function<Throwable, JsonNode>() {
// if null response is returned, recover it and return 'java' null properly
@Override
public JsonNode apply(Throwable throwable) throws Throwable {
return null;
}
});
} catch (RuntimeException e) {
return null;
}
}
在控制器中,返回的 promise 可以被解包以检索实际的 json 响应作为 JsonNode。
F.Promise<JsonNode> jsonPromise = Factory.preparedJson(url).post(someJsonNode);
JsonNode jsonResponse = jsonPromise.get(responseTimeoutInMs);
但是是的 - 在控制器级别之间的某个地方,我需要检查状态代码。
非常感谢!
你好,蒂姆
您可以检查来自 WSResponse 对象的状态响应,并且 return 它与 JsonNode 一起出现在 Promise 中。这是一个简单的例子:
Promise<Pair<JsonNode,Integer>> jsonPromise = WS.url(url).get().map(
new Function<WSResponse, Pair<JsonNode,Integer>>() {
public Pair<JsonNode,Integer> apply(WSResponse response) {
Integer status=response.getStatus();
JsonNode json = response.asJson();
return new Pair(json,status);
}
}
);
在我们的项目中,我们使用JSON进行前后端之间的数据传输。 基本上我们通过准备 WSRequestHolder 创建请求,就像 play doc 告诉的那样 (https://www.playframework.com/documentation/2.3.7/JavaWS) 然后 posting 一个 json 字符串。 然后映射 WSResponse "asJson" 作为 Promise 返回。
但与 WSResponse 不同的是,JsonNode 不包含从后端返回的 http 状态,Promise 也不包含。
我们需要在稍后的代码中区分不同的状态代码以进行正确的响应处理。
到目前为止,我们得到了一个工厂 class,它提供准备好的 objects,其中 WSRequestHolder 包含 url、header 和内容类型集,post json 数据。此外,我们在工厂中实现了 "post",如下所示:
/**
* Posts the given json body to the specified url
*
* @param body Body of JSON node to post
* @return Promised response from post call
*/
@Override
public F.Promise<JsonNode> post(JsonNode body) {
try {
return wsRequestHolder.post(body).map(WSResponse::asJson).recover(new F.Function<Throwable, JsonNode>() {
// if null response is returned, recover it and return 'java' null properly
@Override
public JsonNode apply(Throwable throwable) throws Throwable {
return null;
}
});
} catch (RuntimeException e) {
return null;
}
}
在控制器中,返回的 promise 可以被解包以检索实际的 json 响应作为 JsonNode。
F.Promise<JsonNode> jsonPromise = Factory.preparedJson(url).post(someJsonNode);
JsonNode jsonResponse = jsonPromise.get(responseTimeoutInMs);
但是是的 - 在控制器级别之间的某个地方,我需要检查状态代码。
非常感谢!
你好,蒂姆
您可以检查来自 WSResponse 对象的状态响应,并且 return 它与 JsonNode 一起出现在 Promise 中。这是一个简单的例子:
Promise<Pair<JsonNode,Integer>> jsonPromise = WS.url(url).get().map(
new Function<WSResponse, Pair<JsonNode,Integer>>() {
public Pair<JsonNode,Integer> apply(WSResponse response) {
Integer status=response.getStatus();
JsonNode json = response.asJson();
return new Pair(json,status);
}
}
);