1
내 프로젝트에 Apache Camel을 사용하고 있습니다. 경로 정의는 다음과 같습니다JProfiler8을 사용하여 낙타 경로 프로필하기
이class RouteBuilder() {
public void configure() {
// populate the message queue with some messages
from("direct:input").
choice().
when(body().isEqual("A")).
beanRef('aProcessorBean').
otherwise().
beanRef('bProcessorBean').
end().
to("direct:output");
}
};
이는 FromDefinition
, ChoiceDefinition
, ProcessorDefinition
org.apache.camel.model에서 패키지를 사용하여 매우 원시적 인 예이다.
실제 경로는 더 복잡 할 수 있습니다. 각 경로에서 보낸 시간을 어떻게 측정 할 수 있는지 알고 싶습니다. 기본적으로 모든 XXXDefinition
클래스를 org.apache.camel.model 패키지에서 모니터링해야한다고 생각합니다. JProfiler를 설치하는 방법은 무엇입니까?