108.5. 예제
다음은 xml 데이터 및 xslt 템플릿에서 PDF를 렌더링하고 대상 폴더에 PDF 파일을 저장하는 예제 경로입니다.
from("file:source/data/xml") .to("xslt:xslt/template.xsl") .to("fop:application/pdf") .to("file:target/data");
from("file:source/data/xml")
.to("xslt:xslt/template.xsl")
.to("fop:application/pdf")
.to("file:target/data");
자세한 내용은 이러한 resources…을 참조하십시오.