Olá Pessoal vamos falar um pouco de como criar variável como um ArrayList
Vamos montar uma flow dessa forma.
Como transformamos a variável e uma lista.
Setando valor para dentro da variável ArrayList tem que ser dentro do for.
Logger do final.
XML Completo
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:metadata="http://www.mulesoft.org/schema/mule/metadata" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd">
<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<flow name="variavel_arraylistFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="/" metadata:id="9569910d-472e-4bf8-a44b-f3262cecf6a9" doc:name="HTTP"/>
<logger level="INFO" doc:name="Logger"/>
<set-variable variableName="lista" value="new java.util.ArrayList()" doc:name="Variable"/>
<foreach doc:name="For Each">
<expression-component doc:name="Expression"><![CDATA[flowVars.add(json:Nome)]]></expression-component>
<logger message="#[message.payloadAs(java.lang.String)]" level="INFO" doc:name="Logger"/>
</foreach>
</flow>
</mule>
Fim
Nenhum comentário:
Postar um comentário