266.8. Spring DSL
다음 예제에서는 Protobuf 를 사용하여 protobuf 데이터 유형을 구성하는 Spring을 사용하지 않는 데 Protobuf를 사용하는 방법을 보여줍니다.
<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri="direct:start"/> <unmarshal> <protobuf instanceClass="org.apache.camel.dataformat.protobuf.generated.AddressBookProtos$Person" /> </unmarshal> <to uri="mock:result"/> </route> </camelContext>