275.3. 런타임 조회
이 구성 요소는 레지스트리에서 엔드포인트를 동적 검색해야 할 때 사용할 수 있습니다. 여기서 런타임 시 URI를 계산할 수 있습니다. 그런 다음 다음 코드를 사용하여 끝점을 조회할 수 있습니다.
// lookup the endpoint String myEndpointRef = "bigspenderOrder"; Endpoint endpoint = context.getEndpoint("ref:" + myEndpointRef); Producer producer = endpoint.createProducer(); Exchange exchange = producer.createExchange(); exchange.getIn().setBody(payloadToSend); // send the exchange producer.process(exchange);
그리고 다음과 같이 레지스트리에 정의된 끝점 목록을 가질 수 있습니다.
<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring"> <endpoint id="normalOrder" uri="activemq:order.slow"/> <endpoint id="bigspenderOrder" uri="activemq:order.high"/> </camelContext>