Hi, I m using camel version 2.10.0.
In my route spring XML , i want to use the CamelContextCDI instead of the DefaultCamelContext. How can i do it ? <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"> <import resource="classpath:/suivi-import-jms.xml" /> <bean id="InitLcl" class="net.InitLCLBean" /> <bean id="CtrlCB2A" class="net.CtrlCb2aLclBean" /> <camelContext id="TM-UNL-TEST" xmlns="http://camel.apache.org/schema/spring" > is there a way to change the DefaultCamelContext, or to specify to the a bean that it must run with CDI container. In this bean id = "CtrlCB2A", i have the CDI. public class CtrlContratBean { @Inject DateBusinessManager dateBusinessManager; /** * Bean Ctrl Contrat * * @param exchange * @return */ public List<ContratControllable> ctrlContrat(final Exchange exchange) { } And the value of dateBusinessManager still null , may be is there a way to make like : <cdi-bean id="CtrlCB2A" class="net.CtrlCb2aLclBean" /> thxs for help, i really don t know to run CDI with camel. -- View this message in context: http://camel.465427.n5.nabble.com/How-can-i-use-CDI-with-the-Camel-Context-tp5767375.html Sent from the Camel - Users mailing list archive at Nabble.com.