Play2.0でPOJOからJSONを返そうとしています。しかし、私はエラーを受け取ります
The method toJson(Writes<A>) in the type Json is not applicable for the arguments (Product)
そして私のコードは:
public static Result index(String date) {
Product item = new Product();
return ok(Json.toJson(item));
}
何か案は?