5

试图让 Play 2.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));

   }

有任何想法吗?

4

1 回答 1

19

确保Json使用import play.libs.Json.

您可能使用play.api.libs.Json的是针对 Scala API,而不是 Java API 的。

于 2013-03-16T17:36:42.637 回答