gpt4 book ai didi

tomcat - Grails - 无法读取外部配置值

转载 作者:行者123 更新时间:2023-11-28 22:57:24 25 4
gpt4 key购买 nike

我正在开发一个 grails 应用程序。我想外部化某些配置值,以便它们可以在服务器启动时指定。

开发中,我使用以下命令来运行应用程序

grails prod run-app -Dmy.property="secret"

运行时,我想使用以下代码读取 Controller 中的值

String myVal= System.getProperty("my.property")

当我检查 myVal 的值时,它始终为 null。我只是希望能够始终如一地读取 my.value 的值,感谢指点。

注意:我不想在 Config.groovy 中存储值。我也尝试过 System.getenv().get("my.property"),但这也不起作用。

我还提到了 Externalizing Grails Datasource configuration .

最佳答案

嗯,你指出的博客是正确的。以下是您可以在配置文件中添加的内容。

if (new File("${userHome}/.${appName}/${appName}-config.groovy").exists()) {
grails.config.locations = ["file:${userHome}/.${appName}/${appName}-config.groovy"]
println("loading configuration from: :${grails.config.locations}")
} else {
println("No external configuration file defined.....")
}

将其添加到 config.groovy 文件的顶部。你可以把你的外部配置文件放在下面。

假设我的应用名称是“test”

/usr/home/myhome/.test/test-config.groovy

要在外部配置文件更改期间动态重新加载配置,您可以查看此插件:http://grails.org/plugin/external-config-reload

关于tomcat - Grails - 无法读取外部配置值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24276099/

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