Scala和Play:我如何使用隐式对象?

时间:2015-12-04 06:29:35

标签: scala playframework-2.0

隐式参数应该很简单,但到目前为止它们并非如此。

我一直在使用ReactiveMongo在我的Scala / Play 2.4应用中保存和检索数据。有一段时间,我一直在我的控制器中进行保存,但我想将代码移动到正在保存的实体的伴随对象。那就是麻烦已经开始的地方。

以下是我的Controller的相关部分,演示 的工作原理:

package controllers

...
import model.Destination
import model.Destination.DestinationBSONReader
import scala.concurrent.ExecutionContext.Implicits.global
...

  def add = Action { implicit request =>
    Destination.destinationForm().bindFromRequest.fold(
      formWithErrors => {
        implicit val helper = sfh(formWithErrors)
        BadRequest(views.html.addDestination(formWithErrors))
      },
      destinationData => {
        Destination.mongoCollection.insert(destinationData)
...
          Redirect("/destinations").flashing("success" -> s"The destination ${destinationData.name} has been created")
        }
      }
    )
  }

您可以想象一个表单正在提交,其中包含填充了" Destination"的数据,然后将其保存到Mongo。导入Destination对象,scala ExecutionContext也是如此。我的目的地" companion对象有一个BSONDocumentWriter [Destination]的实例(mongoCollection.insert()调用隐式需要),如下所示:

object Destination {

  ...

  implicit object DestinationBSONWriter extends BSONDocumentWriter[Destination] {
    override def write(destination: Destination): BSONDocument = {
      val dbId = if (destination.id.isDefined) { destination.id.get } else { BSONObjectID.generate.stringify }
      destination.newId = dbId
      BSONDocument(
          "id" -> dbId,
          ... lots of other key/value pairs,
      "name" -> destination.name)
    }
  }

  ...

}

现在,我想将mongoCollection.insert(destinationData)调用移动到同一个" Destination"宾语;控制器真的不应该与数据存储区通信。所以我创建了一个简单的方法,无论我做什么都会导致编译错误:

  def create(destination: Destination) = {
    Destination.mongoCollection.insert(destination)
  }

^ - 编译失败; "找不到参数writer的隐含值:reactivemongo.bson.BSONDocumentWriter [model.Destination]"

所以我将导入添加到类的顶部,因为Scala编译器应该在搜索隐式时查看导入:

import model.Destination.DestinationBSONWriter
import scala.concurrent.ExecutionContext.Implicits.global

^ - 相同的编译错误

所以我决定明确传递隐式参数:

  def create(destination: Destination) = {
    Destination.mongoCollection.insert(destination)(writer = DestinationBSONWriter, ec=global)
  }

^ - 那个导致编译器挂起,我需要重新启动激活器。

我感到困惑。该隐式参数在同一对象中就在那里,但编译器未检测到它。我该怎么用呢?

1 个答案:

答案 0 :(得分:0)

经过一天的研究后,SBT显然存在问题。无论出于何种原因,只要应该成功编译我的代码,它就会决定挂起。