无法导入类路由器。在Play 2.5上的ApplicationLoader中进行路由

时间:2016-05-19 20:12:37

标签: scala playframework dependency-injection

我在使用Scala迁移到Play 2.5时出现问题。我不得不开始使用DependencyInjection,在阅读了所有Play Framework 2.5迁移文档并完成所有相应的实现后,我遇到了一个奇怪的问题。 Play表示应该使用新的DependencyInjection模式自动生成类Routes,但是当我尝试在自定义ApplicationLoader中导入类时,编译器告诉我无法解析符号" router"。以下是我的代码的一部分,希望你能帮助我,谢谢!

import controllers.Assets
import controllers.api.clients.ClientsController
import play.api.ApplicationLoader.Context
import play.api._
import play.api.libs.ws.ahc.AhcWSComponents
import router.Routes

class AppLoader extends ApplicationLoader {
  def load(context: Context) = {
    LoggerConfigurator(context.environment.classLoader).foreach {
      _.configure(context.environment)
    }

    new AppComponents(context).application
  }
}

class AppComponents(context: Context) extends BuiltInComponentsFromContext(context) with AhcWSComponents {

  lazy val clientsController: ClientsController = new ClientsController(wsClient)
  lazy val assets: Assets = new Assets(httpErrorHandler)

  lazy val router = new Routes(
    httpErrorHandler,
    clientsController,
    assets
  )
}

1 个答案:

答案 0 :(得分:4)

检查以下内容:

  1. 确保您的build.sbt包含routesGenerator := InjectedRoutesGenerator

  2. playCompileEverything中执行sbt并在IDE中刷新项目