在 Scala 中,我可以使用Guice来注入 Scalaobject
吗?
例如,我可以注入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
Extensions,你可以这样做:
val injector = Guice.createInjector(new ScalaModule() {
def configure() {
bind[String].toInstance("foo")
}
@Provides
def guiceSpecProvider: GuiceSpec.type = GuiceSpec
})