%dw 1.0
%output application/xml nullValueOn="none"
---
payload
Introduction to Mule 4: DataWeave 2.0
Standard Support for Mule 4.1 ended on November 2, 2020, and this version of Mule reached its End of Life on November 2, 2022, when Extended Support ended. Deployments of new applications to CloudHub that use this version of Mule are no longer allowed. Only in-place updates to applications are permitted. MuleSoft recommends that you upgrade to the latest version of Mule 4 that is in Standard Support so that your applications run with the latest fixes and security enhancements. |
DataWeave 2 is largely unchanged from DataWeave 1. However, MuleSoft made many improvements to make it easier to learn and added new capabilities.
Operators Are Functions
In DataWeave 2, all operators are now functions. While this can involve more parentheses, it is less ambiguous and more friendly to learn through auto-completion features. The previous syntax continues to work for functions with two parameters, providing a shorter syntax for power users.
DataWeave 1 |
|
|
DataWeave 2 - Function Syntax |
|
|
DataWeave 2 - Shortcut Syntax |
|
Type Names
DataWeave 2 uses a type name syntax, which removes the :
from the name.
DataWeave 1 |
|
|
DataWeave 2 |
|
XML Format
The default for the reader property nullValueOn
is empty
for DataWeave 2.0.
For DataWeave 1.0 (which is compatible with Mule 3.x), the value is none
, for example:
<book>
<name></name>
</book>
<book/>