[
https://issues.apache.org/jira/browse/CAMEL-8801?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14569215#comment-14569215
]
ASF GitHub Bot commented on CAMEL-8801:
---------------------------------------
Github user asfgit closed the pull request at:
https://github.com/apache/camel/pull/532
> 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
> Affects Versions: 2.15.2
> 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)