Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
MuleSoft configuração do for each
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Alex teles
August 07, 2016
Education
0
65
MuleSoft configuração do for each
MuleSoft configuração do for each
Alex teles
August 07, 2016
Tweet
Share
More Decks by Alex teles
See All by Alex teles
Mulesoft configurando conexão com banco AS400 DB2
alexteles10
0
100
Chamando um flow de dentro do Transform Message
alexteles10
0
79
MuleSoft Juntando duas ou mais Listas ordenadas
alexteles10
0
74
MuleSoft Como mockar resultado com transform mensager
alexteles10
0
46
MuleSoft mock com set payload
alexteles10
0
55
Como excluir o conector do facebook Do anyponit
alexteles10
0
71
Baixando conectores que não são nativos
alexteles10
0
61
Editor do Anypoint
alexteles10
0
47
MuleSoft Como fazer um when dentro de um when
alexteles10
0
61
Other Decks in Education
See All in Education
小さなまちで始める デジタル創作の居場所〜すべての子どもが創造的に未来を描ける社会へ〜
codeforeveryone
0
230
Adobe Express
matleenalaakso
2
8.2k
Referendum Costituzionale Giustizia
nostradalmine
0
100
Sponsorship 2026 | VizChitra
vizchitra
1
120
P3NFEST 2026 Spring ハンズオン「ハッキング・ラブ!はじめてのハッキングをやってみよう」資料
nomizone
0
360
バージョン管理とは / 01-a-vcs
kaityo256
PRO
1
210
0121
cbtlibrary
0
150
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
signer
PRO
0
3k
多様なメンター、多様な基準
yasulab
6
20k
Gluon Recruit Deck
gluon
0
160
Railsチュートリアル × 反転学習の事例紹介
yasslab
PRO
3
170k
GOBUSATA紹介
chankawa919
0
130
Featured
See All Featured
The Limits of Empathy - UXLibs8
cassininazir
1
270
Agile that works and the tools we love
rasmusluckow
331
21k
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
130
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
8k
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
390
The SEO Collaboration Effect
kristinabergwall1
0
400
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
So, you think you're a good person
axbom
PRO
2
2k
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
120
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.2k
Making the Leap to Tech Lead
cromwellryan
135
9.8k
JAMstack: Web Apps at Ludicrous Speed - All Things Open 2022
reverentgeek
1
400
Transcript
None
None
None
None
None
<db:select config-ref="MySQL_Configuration" doc:name="Database"> <db:parameterized- query><![CDATA[select cpf, idade, nome
from dados_pessoais]]></db:parameterized-query> </db:select>
None
None
None
None
None
None
None
None
None
None
None
<?xml version="1.0" encoding="UTF-8"?> <mule xmlns:db="http://www.mulesoft.org/schema/mule/db" xmlns:schedulers="http://www.mulesoft.org/schema/mule/schedulers" xmlns:dw="http://www.mulesoft.org/schema/mule/ee/dw" xmlns:json="http://www.mulesoft.org/schema/mule/json"
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/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd http://www.mulesoft.org/schema/mule/db http://www.mulesoft.org/schema/mule/db/current/mule-db.xsd http://www.mulesoft.org/schema/mule/schedulers http://www.mulesoft.org/schema/mule/schedulers/current/mule-schedulers.xsd"> <http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/> <db:mysql-config name="MySQL_Configuration" host="localhost" port="3306" user="root" database="mulesoft2016" doc:name="MySQL Configuration"/> <flow name="foreachFlow"> <poll doc:name="Poll"> <schedulers:cron-scheduler expression="0 0 1 1 * ? 2016"/> <logger level="INFO" doc:name="Logger"/> </poll> <logger message="#[message.payloadAs(java.lang.String)]" level="INFO" doc:name="Logger"/> <db:select config-ref="MySQL_Configuration" doc:name="Database"> <db:parameterized-query><![CDATA[select cpf, idade, nome from dados_pessoais]]></db:parameterized-query> </db:select> <foreach collection="#[payload]" batchSize="2" doc:name="For Each"> <logger message="#[message.payloadAs(java.lang.String)]" level="INFO" doc:name="Logger"/> </foreach> <logger message="Fim" level="INFO" doc:name="Logger"/> </flow> </mule>
Fim