GuiceApplicationLoader configuration error

删除回忆录丶 提交于 2019-12-02 09:27:12

Use bindings instead of load:

class MyApplicationLoader extends GuiceApplicationLoader {
  override protected def builder(context: ApplicationLoader.Context): GuiceApplicationBuilder = {
  initialBuilder
    .in(context.environment)
    .loadConfig(context.initialConfiguration)
    .overrides(overrides(context): _*)
    .bindings(new MyModule)
  }
}

I'm not sure what you are trying to achieve here, but that's not how compile time dependency injection works. Guice does its magic at runtime. However, if you want to have your dependencies ready as soon as the application starts, use eager loading. Guice already provides all the tools needed:

MyModule

class MyModule extends AbstractModule {
  def configure() {
    bind(classOf[MyT]).to(classOf[MyTImpl]).asEagerSingleton()
  }
}

application.conf

play.modules.enabled += "modules.MyModule"

Because MyTImpl will be loaded as a singleton, it must have no instance bound data. Think of an object in scala terms. Always the exact same instance of MyTImpl will be injected.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!