So, I\'m trying to implement compile time DI with something that looks like this:
package modules
class MyModule extends AbstractModule {
def configure() {
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:
class MyModule extends AbstractModule {
def configure() {
bind(classOf[MyT]).to(classOf[MyTImpl]).asEagerSingleton()
}
}
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.