是否有某种方法可以获取已部署的 mule 应用程序的基本 mule 应用程序名称?
到目前为止,我发现的唯一两个选择是:
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 中获取这个或其他类似的专有名称?
亲切的问候