360.4. 사용량 마샬링
마샬링은 다음 중 하나를 허용합니다.
- 각 행에 대해 하나의 맵 목록(L'ist<Map<String, ?>>')
-
한 줄에 대한 단일 맵(
Map<String, ?&
gt; )
다른 모든 본문은 예외를 throw합니다.
360.4.1. usage 예: CSV 형식으로 맵 마샬링
<route> <from uri="direct:input"/> <marshal> <univocity-csv/> </marshal> <to uri="mock:result"/> </route>
360.4.2. usage 예: 맵을 고정 대역폭 형식으로 마샬링
<route> <from uri="direct:input"/> <marshal> <univocity-fixed padding="_"> <univocity-header length="5"/> <univocity-header length="5"/> <univocity-header length="5"/> </univocity-fixed> </marshal> <to uri="mock:result"/> </route>
360.4.3. usage 예: TSV 형식으로 맵 마샬링
<route> <from uri="direct:input"/> <marshal> <univocity-tsv/> </marshal> <to uri="mock:result"/> </route>