Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
958 views
in Technique[技术] by (71.8m points)

dynamic change endpoint camel

Is it possible to change from endpoint in dynamic way ? for example I want change

for(endpointFirst).routeId(ROUTEID).to(finishEndpoint);

to

for(endpointSecond).routeId(ROUTEID).to(finishEndpoint);

I try use

camelContext.stopRoute(TestRoute.ROUTEID);

change old endpoint to new endpoint

camelContext.startRoute(TestRoute.ROUTEID);

but my efforts not work properly.

thanks for any help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You would need to

  1. stop the route
  2. remove the route
  3. change the endpoint
  4. add the route
  5. start the route

This allows you to change the from endpoint to whatever you want (for example something else)

Some components / endpoint do allow to change options an have those being updated at runtime. For example the JMS endpoint allows this, so you can

  1. stop the route
  2. change an option on the jms endpoint
  3. start the route

But there may be some components which cannot do that.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...