378장. XSLT Component
Camel 버전 1.3에서 사용 가능
xslt: 구성 요소를 사용하면 XSLT 템플릿을 사용하여 메시지를 처리할 수 있습니다. 이 방법은 Templating을 사용하여 요청에 대한 respopnses를 생성할 때 이상적입니다.
378.1. URI 형식
xslt:templateName[?options]
URI 형식에는 다음 중 하나일 수 있는 templateName 이 포함되어 있습니다.
- 호출할 템플릿의 classpath-local URI
- 원격 템플릿의 전체 URL입니다.
다음 형식으로 URI에 쿼리 옵션을 추가할 수 있습니다.
?option=value&option=value&…
URI 구문에 대한 자세한 내용은 Spring 문서를 참조하십시오.
URI | 설명 |
---|---|
xslt:com/acme/mytransform.xsl | classpath의 com/acme/mytransform.xsl 파일을 참조합니다. |
xslt:file:///foo/bar.xsl | /foo/bar.xsl 파일을 참조합니다. |
xslt:http://acme.com/cheese/foo.xsl | 원격 http 리소스 참조 |
Camel 2.8 이전 버전의 경우 Maven 사용자는 이 구성 요소의 pom.xml
에 다음 종속성을 추가해야 합니다.
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
Camel 2.9 이후부터 XSLT 구성 요소는 camel-core에서 직접 제공됩니다.