Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.11.1
-
None
-
Unknown
Description
If resolve endpoint before route start, MBeans for component & endpoint can't be found in jconsole.
Example code:
public void configure() {
from(xxx).to(yyy);
...
endpoint(xxx); // resolve the endpoint before start
}
Or:
camelContext.getEndpoint(xxx); // resolve the endpoint before start
...
camelContext.start()