Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java コードで「global-property」要素の値を取得する方法はありますか?
<mule xmlns="http://www.mulesoft.org/schema/mule/core"> <global-property name="theKey" value="theValue" /> </mule>
Mule 3.2.1 を使用しています。ありがとう。
これ:
MuleContext muleContext = ... muleContext.getRegistry().get("theKey");