使用Kodein将对象实例传递给构造函数

时间:2018-04-15 00:19:28

标签: kotlin kodein

我是Kotlin和Kodein的新手。我正在尝试使用Java库,我需要将一个单例传递给我的一个构造函数。我无法弄清楚如何获得一个实际的实例。因为我需要将一个实例传递给构造函数,我相信我需要使用DKodein,所以不使用延迟加载?

val kodein: DKodein = Kodein.direct {
    bind<DataSource>() with singleton {
        val config = HikariConfig()
        config.jdbcUrl = "jdbc:postgresql://localhost:5432/mydb"
        config.username = "username"
        config.password = "password"
        config.driverClassName = "org.postgresql.Driver"
        HikariDataSource(config)
    }
    bind<DatabaseContext>() with singleton {
        // I thought kodein.instance() here would provide the DataSource
        // instance I declared above. However I get the error (from Intellij)
        // TypeInference failed. Expected type mismatch.
        // Required: DataSource!
        // Found: KodeinProperty<???>
        DatabaseContext(kodein.instance()) 
    }
}

有没有简单的方法来实现这一目标?或者我是以错误的方式解决这个问题?

感谢。

1 个答案:

答案 0 :(得分:3)

在Kodein的初始化块中,您必须使用instance()而不使用kodein.

//use Kodein instead of DKodein
val kodein: Kodein = Kodein {
    bind<DataSource>() with singleton {
        val config = HikariConfig()
        config.jdbcUrl = "jdbc:postgresql://localhost:5432/mydb"
        config.username = "username"
        config.password = "password"
        config.driverClassName = "org.postgresql.Driver"
        HikariDataSource(config)
    }
    bind<DatabaseContext>() with singleton {
        //use instance() without kodein
        //or use dkodein.instance()
        DatabaseContext(instance()) 
    }
}

Kodein区分DKodeinKodein

  • DKodein允许直接访问实例。
  • Kodein通过by创建委托属性。

Kodein的初始化块提供对两个接口的访问。但dkodein是默认值。如果使用kodein.instance(),则使用属性初始化程序版本。

在初始化块之外,您可以像这样访问DKodein

val datasource: DataSource = kodein.direct.instance()