Java 使用 BodyParser 接受 JSON 请求
@BodyParser.Of(BodyParser.Json.class)
public Result sayHello() {
JsonNode json = request().body().asJson();
String name = json.findPath("name").textValue();
if(name == null) {
return badRequest("Missing parameter [name]");
} else {
return ok("Hello " + name);
}
}
提示:这种方式的优点是,如果请求不是有效请求,Play 将自动响应 HTTP 状态代码 400(Content-type 设置为 application/json
但未提供 JSON)