davsclaus commented on issue #477: Native compile fails in some aggregation 
strategy which I am not using
URL: https://github.com/apache/camel-quarkus/issues/477#issuecomment-558935457
 
 
   A simple Camel route calling a java bean
   ```
   @ApplicationScoped
   public class MyRoute extends RouteBuilder {
   
       @Inject
       MyBean myBean;
   
       @Override
       public void configure() throws Exception {
           from("direct:camel")
               .log("Hello Camel")
               .setBody(e -> myBean.doSomething());
       }
   
       
   }
   ```

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to