Ballerina V 1.0 - 从文件中获取配置值

Ballerina V 1.0 - Get configuration value from file

我正在尝试使用 ballerina V 1.0 从文件中获取配置值。 配置文件如下:

我正在尝试将 test.bal 文件中的值打印为;

io:println(config:getAsString("student.jdbc.username"));

当我在 ballerina.conf 文件中给出配置值时,它使用以下命令工作正常。

ballerina run .\test.bal

现在我需要从另一个文件读取配置 (testConf.conf) 我在 运行 我的项目中尝试了以下命令,但它没有按预期获取配置值。

ballerina run .\test.bal -config testConf.conf

ballerina run .\test.bal -c testConf.conf

ballerina run .\test.bal -Bballerina.conf=.\testConf.conf

也尝试使用 .toml 文件使用上述命令,但没有成功。

从给定文件(ballerina.conf 除外)读取配置的命令是什么?

使用 Ballerina v1.0,自定义配置文件路径如下:

ballerina run .\test.bal --b7a.config.file=path/to/conf/file/file-name.conf

请参考下面的例子以及它是如何执行的。

https://v1-0.ballerina.io/learn/by-example/config-api.html