You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

CSV

The CSV Data Format uses Apache Commons CSV to:

  • unmarshal a CSV payload into a Java List containing Lists of field values
  • marshal a Java Map (or any other message type that can be converted in a Map) into a CSV payload
from("file:salaries.csv").
  unmarshal().csv().
  to("bean:PaymentService?methodName=pay");
  • No labels