Camel JPA - 没有名为camel的EntityManager的持久性提供程序

时间:2014-01-24 16:37:04

标签: jpa apache-camel

我正在尝试使用以下代码,以便我可以从JPA实体中使用。

String DATASOURCE_CONTEXT = "java:jboss/datasources/WikiDS"; 

Connection result = null; 
DataSource datasource = null; 

try { 
Context initialContext = new InitialContext(); 
   datasource = (DataSource)initialContext.lookup(DATASOURCE_CONTEXT); 

   if (datasource == null) { 
    System.out.println("Data source is null"); 
   } 
   else { 
    System.out.println("Data source is OK!!!"); 
   } 
} 
catch(NamingException ex) { 
System.out.println("Naming exception is: " + ex.getMessage()); 
} 

SimpleRegistry reg = new SimpleRegistry() ; 
reg.put("myDataSource",datasource); 

CamelContext context = new DefaultCamelContext(reg); 

    ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false"); 
    context.addComponent("test-jms", JmsComponent.jmsComponentAutoAcknowledge(connectionFactory)); 
    context.addRoutes(new RouteBuilder() { 
        public void configure() { 
            from("jpa://org.apache.camel.example.jmstofile?consumer.namedQuery=step1&consumeDelete=false").to("file://test"); 
        } 
    }); 

    ProducerTemplate template = context.createProducerTemplate(); 
    context.start(); 

无论我做什么,我都会遇到以下异常。

[错误]无法在项目上执行目标org.codehaus.mojo:exec-maven-plugin:1.1.1:java(default-cli)camel-example-jms-file:执行Java类时发生异常。 null:InvocationTargetException:没有名为camel的EntityManager的持久性提供程序。

任何想法如何解决这个问题?

问候,

肖恩

1 个答案:

答案 0 :(得分:4)

&persistenceUnit=<name-of-your-unit>添加到您的URI,其中<name-of-your-unit>persistence.xml中给出的持久性单元的名称。