spring.activemq.broker-url not set correct on Activemq + Spring Boot

2017-05-20 Thread Preben.Asmussen
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 {

Re: Re: In 'onException' - how to decide per-message whether to 'continue' route or not

2017-05-20 Thread Martin Lichtin
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