171.4. 예제
아래 스니펫에서는 콘텐츠 리포지토리의 /home/test
노드에 node
라는 노드를 생성합니다. 노드에 추가 된 속성도 추가 됩니다. my.contents.property
which will contain the body of the message being sent.
from("direct:a").setHeader(JcrConstants.JCR_NODE_NAME, constant("node")) .setHeader("my.contents.property", body()) .to("jcr://user:pass@repository/home/test");
다음 코드는 Event.NODE_ADDED 및 Event.NODE_REMOVED 이벤트 (이벤트 유형 1 및 2로 마스킹됨)에 대한 경로 가져오기-애플리케이션/인 박스 아래에 EventListener를 등록하고 모든 하위 항목에 대해 딥을 수신 대기합니다.
<route> <from uri="jcr://user:pass@repository/import-application/inbox?eventTypes=3&deep=true" /> <to uri="direct:execute-import-application" /> </route>