私はこのPlayFramework2コード(簡略化)を持っています:
import formatters.json.IdeaTypeFormatter._
object IdeaTypes extends Controller {
def list = Action { request =>
Ok(toJson(IdeaType.find(request.queryString)))
}
def show(id: Long) = Action {
IdeaType.findById(id).map { ideatype =>
Ok(toJson(ideatype))
}.getOrElse(JsonNotFound("Type of idea with id %s not found".format(id)))
}
}
IdeaType
class extends Entity
、およびそのコンパニオンオブジェクトIdeaType
、、extends EntityCompanion
。
ご想像のとおり、私はすべてのコントローラーにこの種のコードを持っているので、次のような特性に基本的な動作を抽出したいと思います。
abstract class EntityController[A<:Entity] extends Controller {
val companion: EntityCompanion
val name = "entity"
def list = Action { request =>
Ok(toJson(companion.find(request.queryString)))
}
def show(id: Long) = Action {
companion.findById(id).map { entity =>
Ok(toJson(entity))
}.getOrElse(JsonNotFound("%s with id %s not found".format(name, id)))
}
}
しかし、次のエラーが発生します。
[error] EntityController.scala:25: No Json deserializer found for type List[A].
[error] Try to implement an implicit Writes or Format for this type.
[error] Ok(toJson(companion.find(request.queryString)))
[error] ^
[error] EntityController.scala:34: No Json deserializer found for type A.
[error] Try to implement an implicit Writes or Format for this type.
[error] Ok(toJson(entity))
[error] ^
Writes
トレイトを実装するEntityController
(または抽象クラスを継承するEntityController
)クラスによって暗黙的に実装されることを伝える方法がわかりません
- 編集
これまでのところ、私は次のようにしています:
abstract class CrudController[A <: Entity](
val model: EntityCompanion[A],
val name: String,
implicit val formatter: Format[A]
) extends Controller {
このように使用します
object CrudIdeaTypes extends CrudController[IdeaType](
model = IdeaType,
name = "type of idea",
formatter = JsonIdeaTypeFormatter
)
暗黙的に使用してscalaに自動的に選択させることができませんでした。このインポートを試しましたが、機能しませんでした
import formatters.json.IdeaTypeFormatter._