170.4.3. 예 3: Blob 사용
이 예에서는 지정된 컨테이너에 있는 모든 Blob을 사용합니다. 생성된 교환에는 Blob의 페이로드가 본문으로 포함됩니다.
from("jclouds:blobstore:aws-s3" +
"?container=mycontainer")
.to("direct:next");아래 표시된 것처럼 xml을 사용하여 동일한 목표를 달성할 수 있습니다.You can achieve the same goal by using xml, as you can see below.
<route>
<from uri="jclouds:blobstore:aws-s3?operation=GET&container=mycontainer&blobName=myblob"/>
<to uri="direct:next"/>
</route>jclouds:compute:aws-ec2?operation=CamelJcloudsCreateNode&imageId=AMI_XXXXX&locationId=eu-west-1&group=mygroup