4.6. 自定义 Camel 上下文配置
要在 Camel 自动配置创建的 CamelContext bean 上执行操作,您需要在 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 上下文中,并且所有实例都将被执行。