Hi I’m working on a Spring Boot/Camel application, and need to setup a custom MQDestinationResolver (WebSphere MQ).
I was doing this in CamelContextConfiguration.beforeApplicationStart, but the deadLetterChannel resolves the channel at configuration time, and not at startup time, so i need the configuration done at context initialization time. I’ve tried adding a CamelContext @Bean, but that doesn’t seem to get called. Any hints/ideas as to where i might do this ? /J