330.5. 샘플


다음 샘플에서는 direct:in 끝점에서 System.out 스트림으로 메시지를 라우팅합니다.

// Route messages to the standard output.
from("direct:in").to("stream:out");

// Send String payload to the standard output.
// Message will be followed by the newline.
template.sendBody("direct:in", "Hello Text World");

// Send byte[] payload to the standard output.
// No newline will be added after the message.
template.sendBody("direct:in", "Hello Bytes World".getBytes());

다음 샘플은 헤더 유형을 사용하여 사용할 스트림을 결정하는 방법을 보여줍니다. 샘플에서는 자체 출력 스트림인 MyOutputStream 을 사용합니다.

다음 샘플에서는 파일 스트림을 지속적으로 읽는 방법을 보여줍니다( UNIX tail 명령과 유사).

from("stream:file?fileName=/server/logs/server.log&scanStream=true&scanStreamDelay=1000")
  .to("bean:logService?method=parseLogLine");

scanStream (pre Camel 2.7) 또는 scanStream + 재시도를 사용하는 하나의 가져 오기는 scanStreamDelay의 각 반복으로 파일을 다시 열고 스캔합니다. NIO2를 사용할 수 있을 때까지 파일이 삭제/생성되는 시기를 안정적으로 감지할 수 없습니다.

파일을 롤오버/rewritten한 경우 다시 로드하려면 fileWatcher재시도 옵션도 설정해야 합니다.

from("stream:file?fileName=/server/logs/server.log&scanStream=true&scanStreamDelay=1000&retry=true&fileWatcher=true")
  .to("bean:logService?method=parseLogLine");
Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.