0

我是 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()) 
    }
}

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

谢谢。

4

1 回答 1

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()
于 2018-04-15T10:11:08.113 回答