Scalaでは、 Guice を使用してScala object
sを注入できますか?
たとえば、次のオブジェクトのs
に注入できますか?
object GuiceSpec {
@Inject
val s: String = null
def get() = s
}
Googleに関するいくつかの調査では、これを次のように実行できることが明らかになりました(次のコードは ScalaTest 単体テストです)。
import org.junit.runner.RunWith
import org.scalatest.WordSpec
import org.scalatest.matchers.MustMatchers
import org.scalatest.junit.JUnitRunner
import com.google.inject.Inject
import com.google.inject.Module
import com.google.inject.Binder
import com.google.inject.Guice
import uk.me.lings.scalaguice.ScalaModule
@RunWith(classOf[JUnitRunner])
class GuiceSpec extends WordSpec with MustMatchers {
"Guice" must {
"inject into Scala objects" in {
val injector = Guice.createInjector(new ScalaModule() {
def configure() {
bind[String].toInstance("foo")
bind[GuiceSpec.type].toInstance(GuiceSpec)
}
})
injector.getInstance(classOf[String]) must equal("foo")
GuiceSpec.get must equal("foo")
}
}
}
object GuiceSpec {
@Inject
var s: String = null
def get() = s
}
これは、 scala-guice および ScalaTest を使用していることを前提としています。
上記の答えは正しいですが、ScalaGuice
拡張機能を使用したくない場合は、次のようにすることができます。
val injector = Guice.createInjector(new ScalaModule() {
def configure() {
bind[String].toInstance("foo")
}
@Provides
def guiceSpecProvider: GuiceSpec.type = GuiceSpec
})