0
對於JBoss駱駝模塊在module.xml文件7,我有一個依賴到JBoss AS創建7
<dependencies>
<module name="org.apache.camel.components"/>
</dependencies>
我不知道什麼是駱駝的jar文件我必須包括在文件夾路徑組織/阿帕奇/ camel/components/main /。
請指引我
對於JBoss駱駝模塊在module.xml文件7,我有一個依賴到JBoss AS創建7
<dependencies>
<module name="org.apache.camel.components"/>
</dependencies>
我不知道什麼是駱駝的jar文件我必須包括在文件夾路徑組織/阿帕奇/ camel/components/main /。
請指引我
開始,你需要駝核...可能還有其他人,這取決於components你需要...
這裏下載:http://mvnrepository.com/artifact/org.apache.camel/camel-core
,或者如果你正在使用Maven,只需將此依賴項添加到項目的pom.xml中即可...
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>2.10.1</version>
</dependency>
您的依賴關係引用的是「components」,它是所有Camel c的頂級包omponents。有沒有一個你想要使用的特定的? – sully6768