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 Usando Filter costom
Search
Alex teles
August 11, 2016
Education
0
59
MuleSoft Usando Filter costom
MuleSoft Usando Filter costom
Alex teles
August 11, 2016
Tweet
Share
More Decks by Alex teles
See All by Alex teles
Mulesoft configurando conexão com banco AS400 DB2
alexteles10
0
88
Chamando um flow de dentro do Transform Message
alexteles10
0
71
MuleSoft Juntando duas ou mais Listas ordenadas
alexteles10
0
67
MuleSoft Como mockar resultado com transform mensager
alexteles10
0
39
MuleSoft mock com set payload
alexteles10
0
45
Como excluir o conector do facebook Do anyponit
alexteles10
0
66
Baixando conectores que não são nativos
alexteles10
0
57
Editor do Anypoint
alexteles10
0
41
MuleSoft Como fazer um when dentro de um when
alexteles10
0
45
Other Decks in Education
See All in Education
2025年度春学期 統計学 第1回 イントロダクション (2025. 4. 10)
akiraasano
PRO
0
170
2025/06/05_読み漁り学習
nag8
0
140
著作権と授業に関する出前講習会/dme-2025-05-01
gnutar
0
200
Avoin jakaminen ja Creative Commons -lisenssit
matleenalaakso
0
1.9k
モンテカルロ法(3) 発展的アルゴリズム / Simulation 04
kaityo256
PRO
7
1.3k
小さなチャレンジが生んだチームの大きな変化 -私のふりかえり探求の原点
callas1900
0
530
プレゼンテーション実践
takenawa
0
4.9k
諸外国の理科カリキュラムにおけるビッグアイデアの構造比較
arumakan
0
310
Interaction - Lecture 10 - Information Visualisation (4019538FNR)
signer
PRO
0
2k
教員向け生成AI基礎講座(2025年3月28日 東京大学メタバース工学部 ジュニア講座)
luiyoshida
1
560
演習問題
takenawa
0
4.9k
予習動画
takenawa
0
5.1k
Featured
See All Featured
Automating Front-end Workflow
addyosmani
1370
200k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Making Projects Easy
brettharned
116
6.3k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
KATA
mclloyd
29
14k
Raft: Consensus for Rubyists
vanstee
140
7k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Thoughts on Productivity
jonyablonski
69
4.7k
Unsuck your backbone
ammeep
671
58k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
31
1.2k
Visualization
eitanlees
146
16k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Transcript
MuleSoft Alex teles
Filter Custom É um filtro personalizado
Flow completo
Configuração padrão do Http
XML to JSON
O Custom temos que customizar Criei uma class java e
apontei no Custom
Class Java Recupera o payload como String Mostra o que
foi recuperado Você pode manipular de acordo com sua necessidade isso é uma demonstração de como pode-se usar, podemos criar outros métodos de necessário.
Execultando o projeto
Mostra o que tem dentro da lista que um json
mais dentro de uma string
XML completo <?xml version="1.0" encoding="UTF-8"?> <mule 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:listener-config name="HTTP_Listener_Configuration" host="localhost" port="8081" doc:name="HTTP Listener Configuration"/> <flow name="exception_filterFlow"> <http:listener config-ref="HTTP_Listener_Configuration" path="/filter" doc:name="HTTP"/> <logger message="#[payload]" level="INFO" doc:name="Logger"/> <json:xml-to-json-transformer doc:name="XML to JSON"/> <custom-filter class="exception_filter.CustomFilter" doc:name="Custom"/> </flow> </mule>
Chegamos ao fim obrigado Alex teles