1

有没有办法在 Java 代码中检索“全局属性”元素的值?

<mule xmlns="http://www.mulesoft.org/schema/mule/core">
  <global-property name="theKey" value="theValue" />
</mule>

我正在使用骡子 3.2.1。谢谢。

4

1 回答 1

3

这:

MuleContext muleContext = ...
muleContext.getRegistry().get("theKey");
于 2012-05-14T18:25:42.923 回答