Hi
Juste doing some testing on boot+activemq with camel version 2.19.0
It seems that when you set the spring property spring.activemq.broker-url it
will not be set on the amq connectinfactory when using autoconfig.
A simple test class as
@SpringBootApplication
public class DemoApplication {
Thanks, onWhen pointed me into the right direction.
I can use a predicate like:
rd.onException(Exception.class).continued(new Predicate() {
@Override
public boolean matches(Exchange exchange) {
return myDecision(exchange);
}
})
On 13.05