Grails 如何通过 HTTP 加载 WAR 外部的配置?

发布于 2024-10-17 05:48:33 字数 262 浏览 1 评论 0原文

我已经看到了有关如何使用 grails.config.locations 为 Grails 配置指定位于 WAR 文件之外的外部 .groovy 和 .properties 文件的问题和解答,但是我们需要不在运行该配置的服务器上的外部配置。容器(Tomcat)正在运行。 (它确实有一个本地 FS,但它不是持久性的,并且对于所有部署环境都是相同的 - 因此需要在 WAR、容器和服务器外部覆盖它)。

那么,我可以使用 grails.config.locations 的 http: URL 吗?

I've seen questions and answers about how to specify external .groovy and .properties files for Grails config that are outside of the WAR file using grails.config.locations, but we need external config that isn't on the server on which the container (Tomcat) is running.
(It does have a local FS, but it is not persistient and is identical for all deployment environments - hence the need to override it external to the WAR, container and server).

So, can I use http: URLs for grails.config.locations ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑梦风尘 2024-10-24 05:48:33

是的。工作原理如下:

将其添加到 Config.groovy 中,并使用 -D 将 PARAM1 传递到 JVM 以指定配置文件的外部 URL。

grails.config.locations = ["url:" + System.properties["PARAM1"]]

Yes. The following works:

Add this in Config.groovy and pass PARAM1 using -D to the JVM to specify the external URL for the config file.

grails.config.locations = ["url:" + System.properties["PARAM1"]]
自演自醉 2024-10-24 05:48:33

我不知道有任何内置功能允许您为 grails.config 指定 URL。但是,您似乎可以自己实现:

  • 定义要用于 d/l 包含在
  • 同一 Config.groovy 脚本中的 WAR 中的 Congif.groovy 文件的 URL,编写代码以下载将文件复制到服务器文件系统上的特定位置(请参阅本文
  • 将 grails.config.locations 设置为指向您写入 Config.groovy 文件的文件系统位置。

我还没有尝试过,但似乎它会起作用。

I am not aware of any built in functionality that would allow you to specify URL for grails.config. However, it seems like something that you could implement yourself:

  • define your URL(s) that you want to use to d/l the Congif.groovy file that is included in your WAR
  • in that same Config.groovy script, write code to download the file to a specific location on your server's file system (see this article)
  • set your grails.config.locations to point to the file system location that you wrote the Config.groovy file to.

I haven't tried it but seems like it would work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文