Grails 如何通过 HTTP 加载 WAR 外部的配置?
我已经看到了有关如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。工作原理如下:
将其添加到 Config.groovy 中,并使用 -D 将 PARAM1 传递到 JVM 以指定配置文件的外部 URL。
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 指定 URL。但是,您似乎可以自己实现:
我还没有尝试过,但似乎它会起作用。
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:
I haven't tried it but seems like it would work.