さまざまなユーザーを作成、読み取り、更新、および削除できる単純なアプリケーションを作成しようとしています。動作する基本的な UI ベースのビュー、コントローラー、およびモデルがありますが、これよりも高度になり、RESTful json インターフェイスを提供したいと考えていました。
ただし、Play 2 のドキュメント、Play 2 の Google グループ、および stackoverflow の Web サイトで見つけられるものをすべて読んだにもかかわらず、これを機能させることはできません。
以前のフィードバックに基づいてコントローラーを更新しましたが、ドキュメントに基づいていると信じています。
これが私の更新されたコントローラーです:
package controllers;
import models.Member;
import play.*;
import play.mvc.*;
import play.libs.Json;
import play.data.Form;
public class Api extends Controller {
/* Return member info - version to serve Json response */
public static Result member(Long id){
ObjectNode result = Json.newObject();
Member member = Member.byid(id);
result.put("id", member.id);
result.put("email", member.email);
result.put("name", member.name);
return ok(result);
}
// Create a new body parser of class Json based on the values sent in the POST
@BodyParser.Of(Json.class)
public static Result createMember() {
JsonNode json = request().body().asJson();
// Check that we have a valid email address (that's all we need!)
String email = json.findPath("email").getTextValue();
if(name == null) {
return badRequest("Missing parameter [email]");
} else {
// Use the model's createMember class now
Member.createMember(json);
return ok("Hello " + name);
}
}
....
しかし、これを実行すると、次のエラーが発生します。
incompatible types [found: java.lang.Class<play.libs.Json>] [required: java.lang.Class<?extends play.mvc.BodyParser>]
In /Users/Mark/Development/EclipseWorkspace/ms-loyally/loyally/app/controllers/Api.java at line 42.
41 // Create a new body parser of class Json based on the values sent in the POST
42 @BodyParser.Of(Json.class)
43 public static Result createMember() {
44 JsonNode json = request().body().asJson();
45 // Check that we have a valid email address (that's all we need!)
46 String email = json.findPath("email").getTextValue();
私が知る限り、ドキュメントからコピーしたので、これを機能させるために何か助けていただければ幸いです。