Architecture
Data Format
登录后可跨设备保存划线和私人笔记登录
Data Format
Camel supports a pluggable DataFormat to allow messages to be marshalled to and from binary or text formats to support a kind of Message Translator.

Camel has support for message transformation using several techniques. One such technique is data formats, where marshal and unmarshal comes from.
So in other words, the Marshal and Unmarshal EIPs are used data formats.
- Marshal - Transforms the message body (such as Java object) into a binary or textual format, ready to be wired over the network.
- Unmarshal - Transforms data in some binary or textual format (such as received over the network) into a Java object; or some other representation according to the data format being used.
Supported data formats
There are more than 40 different data formats that support formats such as XML, CSV, JSON, YAML, Avro, Protobuf, and many more.
Example
See Marshal for more information and examples.
See Also
评论
登录后参与评论
正在加载评论…
KnowForge