You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2019/12/03 10:20:19 UTC

[GitHub] [camel-quarkus] lburgazzoli opened a new issue #499: Filter out beans from CDI from build time discovery

lburgazzoli opened a new issue #499: Filter out beans from CDI from build time discovery
URL: https://github.com/apache/camel-quarkus/issues/499
 
 
   If i.e. a component is defined using CDI, like:
   
   ```java
   @Singleton
   public class CamelComponents {
       @Singleton
       @Named("direct")
       @Produces
       DirectComponent directComponent() {
           DirectComponent component = new DirectComponent();
           component.setTimeout(1234);
   
           return component;
       }
   }
   ```
   
   we should exclude it from build time auto discovery 
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services