6.8. 配置自定义 Camel 上下文
要在 CamelContext
bean 上由 Camel Spring Boot auto-configuration 创建操作,请在 Spring 上下文中注册 CamelContextConfiguration
实例。
流程
在 Spring 上下文中注册
CamelContextConfiguration
实例,如下所示。@Configuration public class MyAppConfig { ... @Bean CamelContextConfiguration contextConfiguration() { return new CamelContextConfiguration() { @Override void beforeApplicationStart(CamelContext context) { // your custom configuration goes here } }; } }
在启动 Spring 上下文之前调用 CamelContextConfiguration
和 beforeApplicationStart(CamelContext)
方法,因此传递给这个回调的 CamelContext
实例将完全自动配置。您可以将许多 CamelContextConfiguration
实例添加到 Spring 上下文,并将执行所有这些实例。