gpt4 book ai didi

kotlin - HOCON 配置文件动态替换

转载 作者:行者123 更新时间:2023-12-02 12:59:10 33 4
gpt4 key购买 nike

我正在使用 HOCON 配置日志消息,并且正在寻找一种动态替换占位符值的方法。

我知道 ${?PLACEHOLDER} 将读取环境变量并在 PLACEHOLDER 环境变量不存在时返回一个空字符串。

例子

这是我想到的一个例子:

(我正在使用 config4k 加载 HOCON )

data class LogMessage(val message: String, val code: String)

fun getMessage(key: String, placeholderValues: Array<String> = arrayOf()): LogMessage {
val config = ConfigFactory.parseString("MY_LOG_MESSAGE {code = ABC-123456, message = My log message with dynamic value %0% and another dynamic value %1% }")

val messageObject = config.extract<LogMessage>(key)
var message = messageObject.message

placeholderValues.forEachIndexed { placeholderIndex, value ->
message = message.replace("%$placeholderIndex%", value)
}

return messageObject.copy(message = message)
}

fun main(args: Array<String>) {
println(getMessage("MY_LOG_MESSAGE", arrayOf("value 1", "value 2")))

// prints: LogMessage(message=My log message with dynamic value value 1 and another dynamic value value 2, code=ABC-123456)
}

即使这可行,它看起来也不是最好的解决方案,我认为已经有解决方案。

有人可以告诉我是否有内置解决方案吗?

最佳答案

第一件事。
HOCON 只是一种美化的 JSON 格式。
config4k 只是一个包装器。
您的所有工作都由 Typesafe Config 完成,你可能已经注意到了。
从他们的文档和代码来看,他们仅支持来自文件或环境的占位符:

This library limits itself to config files. If you want to load config from a database or something, you would need to write some custom code.



但是对于你正在做的事情,简单的 String.format()应该足够了:
fun interpolate(message: String, vararg args: Any) = String.format(message, *args)

println(interpolate("My message was %s %s %s %s", "a", 1, 3.32, true))
// My message was a 1 3.32 true

请注意,您可以使用 *解构你的数组。

关于kotlin - HOCON 配置文件动态替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51979804/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com