<flow name="checkAge">
<http:listener path="person" method="POST" config-ref="http" />
<json:json-to-object-transformer />
<choice>
<when expression="#[payload.age > 21]">
<logger message="adult" />
</when>
<otherwise>
<logger message="underage" />
</otherwise>
</choice>
</flow>
Migrating the Choice Router
Little changed between Choice router for Mule 3 and Mule 4 except for:
-
DataWeave is now the expression language so the when statements are actually going to use it instead of MEL
-
The
<otherwise>
block is now optional
Expression Language for the When Block
The when expressions need to be changed from MEL to DataWeave. This also mean that you can leverage DataWeave’s ability to interpret any format to avoid unnecessary convertions. For example, suppose a flow in which a JSON document representing a user is posted through HTTP and you want to check if the person is underage:
With Mule 4, you don’t need to worry about JSON or Java formats and just do:
<flow name="checkAge">
<http:listener path="person" method="POST" config-ref="http" />
<choice>
<when expression="#[payload.age > 21]">
<logger message="adult" />
</when>
<otherwise>
<logger message="underage" />
</otherwise>
</choice>
</flow>