You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Chris Pimlott (JIRA)" <ji...@apache.org> on 2015/05/26 21:54:17 UTC

[jira] [Created] (CAMEL-8801) CamelContext auto-configuration should be conditional

Chris Pimlott created CAMEL-8801:
------------------------------------

             Summary: CamelContext auto-configuration should be conditional
                 Key: CAMEL-8801
                 URL: https://issues.apache.org/jira/browse/CAMEL-8801
             Project: Camel
          Issue Type: Improvement
          Components: camel-spring-boot
            Reporter: Chris Pimlott


The {{@Bean}} declaration of {{CamelContext}} within {{CamelAutoConfiguration}} should be made conditional to allow the user to create it manually if they so desire.  This is useful when converting an application using an existing XML-based camelContext, for example.

This would also make camel-spring-boot more consistent with [Spring Boot's policy of non-invasive auto-configuration|http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#using-boot-replacing-auto-configuration].

The fix is just to add a conditional annotation on the camelContext method, e.g.:

{code}
    @Bean
    @ConditionalOnMissingBean(CamelContext.class)
    CamelContext camelContext(ApplicationContext applicationContext,
                              CamelConfigurationProperties configurationProperties) {
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)