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.
我正在使用 Jersey 模块,谁能告诉我如何从球衣组件中访问 mule 消息属性?
我需要访问存储在消息属性中的对象之一。
我检查了源代码,至少在 3.3.1 中,Mule 似乎没有注入任何 custom @Context,这可能包括MuleEvent(这个消息及其属性)。
@Context
MuleEvent
所以我唯一能想到的就是使用已弃用的静态访问器来访问飞行中的事件:org.mule.RequestContext.getEvent().
org.mule.RequestContext.getEvent()
MuleSoft 可能会随时删除它,因此这不是未来的证据。希望当他们放弃它时,他们还将提供可用于 JAX-RS 资源的替代品。