デプロイされた Mule アプリケーションのベース Mule アプリケーション名を取得する方法はありますか?
これまでに見つけた2つのオプションは次のとおりです。
muleContext.getConfiguration().getId() //which gives me some not so humanly-readable id of some sort.
と
muleEvent.getFlowConstruct().getName() //gives me that flow name from where this was called.
各アプリケーションは、展開時に独自のアプリケーション ディレクトリにあります。muleContext 内からこの識別名または他の類似の識別名を取得することはできませんか?
敬具