在Corda中,使用节点驱动程序时如何配置节点的Web端口?

时间:2018-07-26 10:53:21

标签: corda

我正在使用Corda节点驱动程序来启动节点。如何配置节点的Web端口?

1 个答案:

答案 0 :(得分:1)

您需要为webAddress属性传递自定义替代。

在下面的示例中,我们将节点的Web端口设置为12345

fun main(args: Array<String>) {
    driver {
        val nodeHandle = startNode(
                customOverrides = mapOf("webAddress" to "localhost:12345")
        ).getOrThrow()

        startWebserver(nodeHandle).get()
    }
}