CFML系统环境变量(OpenBD)

发布于 2024-11-03 09:41:19 字数 123 浏览 0 评论 0原文

如何访问 CFML 中的系统环境变量?需要读出 CloudFoundry 数据库连接设置。

所需的变量是“VCAP_SERVICES”。

有这样的功能吗?

谢谢,

伊万

How do I access the system environment variables in CFML? It is required to read out the CloudFoundry database connectivity settings.

The variable required is "VCAP_SERVICES".

Is there a function for that?

Thanks,

Yvan

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

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

发布评论

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

评论(1

来世叙缘 2024-11-10 09:41:19

以下解决方案似乎在我的 Ubuntu 上非常部分地工作(它与 env 列出的所有变量相去甚远——这可能没问题,因为 JVM 只是无法获取其中的大部分),但它 < em>可能以某种方式为你工作:

<cfset properties = createObject("java", "java.lang.System").properties />
<cfdump var="#properties#">

你正在寻找的变量可以以user.为前缀

Following solution seems to work very-very partially on my Ubuntu (it gets far from all variables listed by env -- bit this may be fine because JVM just does not get most of these), but it may somehow work for you:

<cfset properties = createObject("java", "java.lang.System").properties />
<cfdump var="#properties#">

Variable you are looking for can be prefixed with user.

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