331장. 스트림 구성 요소
Camel 버전 1.3에서 사용 가능
stream: 구성 요소는 System.in
,System.out
및 System.err
스트림에 대한 액세스를 제공하고 파일 및 URL 스트리밍을 허용합니다.
Maven 사용자는 이 구성 요소에 대해 pom.xml
에 다음 종속성을 추가해야 합니다.
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-stream</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
331.1. URI 형식
stream:in[?options] stream:out[?options] stream:err[?options] stream:header[?options]
또한 파일
및 URL
끝점 URI가 지원됩니다.
stream:file?fileName=/foo/bar.txt stream:url[?options]
stream:header
URI가 지정된 경우 stream
헤더는 쓸 스트림을 찾는 데 사용됩니다. 이 옵션은 스트림 프로듀서에만 사용할 수 있습니다 (즉, from()
).
URI에 쿼리 옵션을 추가할 수 있습니다. ?option=value&option=value&…