1

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

所需的变量是“VCAP_SERVICES”。

有那个功能吗?

谢谢,

伊万

4

1 回答 1

2

以下解决方案似乎在我的 Ubuntu 上非常非常有效(它与env-- bit 列出的所有变量相去甚远,这可能很好,因为 JVM 只是没有得到其中的大部分),但它可能以某种方式对您有用:

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

您要查找的变量可以带有前缀user.

于 2011-04-24T21:16:36.127 回答