303.14. POJO(アン)のマーシャリング
Camel のプラグ可能なデータ形式は、JAXB、XStream、JibX、Castor、XMLBeans などのライブラリーを使用した pojo/xml マーシャリングのサポートを提供します。これらのデータフォーマットをルートで使用して、pojo の送受信が可能です。
Web サービスに アクセス する際には、リクエストをマーシャリングし、レスポンスメッセージをアンマーシャリングすることができます。
JaxbDataFormat jaxb = new JaxbDataFormat(false); jaxb.setContextPath("com.example.model"); from("direct:example").marshal(jaxb).to("spring-ws:http://foo.com/bar").unmarshal(jaxb);
Web サービスを 提供 する場合と同様に、POJO に XML リクエストをアンマーシャリングし、レスポンスメッセージを XML にマーシャリングすることができます。
from("spring-ws:rootqname:{http://example.com/}GetFoo?endpointMapping=#endpointMapping").unmarshal(jaxb) .to("mock:example").marshal(jaxb);