lburgazzoli commented on code in PR #1097:
URL: 
https://github.com/apache/camel-spring-boot/pull/1097#discussion_r1507505050


##########
core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java:
##########
@@ -189,6 +197,12 @@ public static CamelContext 
doConfigureCamelContext(ApplicationContext applicatio
         // and call after all properties are set
         DefaultConfigurationConfigurer.afterPropertiesSet(camelContext);
 
+        // apply custom configurations if any
+        // TODO: this must be evaluated as I don't know if it makes sense here.
+        contextCustomizers.stream()
+                .sorted(Comparator.comparing(CamelContextCustomizer::getOrder))
+                .forEach(c -> c.configure(camelContext));

Review Comment:
   @davsclaus I added this to avoid polluting this `camelContext` method, I'm 
not sure if there is a better way of doing it. 
   
   Note that there is a [MapstructMappingAutoConfiguration]( 
https://github.com/apache/camel-spring-boot/blob/main/components-starter/camel-mapstruct-starter/src/main/java/org/apache/camel/component/mapstruct/springboot/MapstructMappingAutoConfiguration.java)
 that produces a bean of type `CamelContextCustomizer` but I haven't found any 
reference of where customizers are used in `camel-spring-boot`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to