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.
使用 DataMapper,您可以执行以下操作:
output.outputField = MyClass.staticMethod(input.intputField));
但是,似乎不可能用 DataWeave 做一些等效的事情。最接近的方法似乎是定义您自己的 MEL 全局函数,如此处所述,但我更喜欢编写包含在 Java 类中的普通旧 Java 代码。
如果它不仅仅是一个简单的 oneliner,我会使用一个调用我的 java 逻辑的全局函数。然后,您从 dataweave 中调用该全局函数。
好吧,我认为您可以在 dataweave 的标题部分中使用 % 函数。