10.6.3. カスタムトランスフォーマーオプション
注記
トランスフォーマーは org.apache.camel.spi.Transformer
のサブクラスである必要があります。
名前 | 説明 |
---|---|
ref | カスタムトランスフォーマー Bean ID への参照 |
className | カスタムトランスフォーマークラスの完全修飾クラス名 |
カスタムトランスフォーマークラスを指定する例:
Java DSL の場合
transformer() .fromType("xml") .toType("json") .withJava(com.example.MyCustomTransformer.class);
XML DSL の場合
<transformers> <customTransformer className="com.example.MyCustomTransformer" fromType="xml" toType="json"/> </transformers>