Camel - 缺少依赖项:用于dropbox的org.apache.camel.spi.ComponentResolver

时间:2017-03-22 14:04:29

标签: apache dependencies apache-camel dropbox apache-servicemix

我昨天开始在apache servicemix上工作,我希望将所有文件放在我的Dropbox上并将它们放在我的本地计算机上。 这是执行它的blueprint.xml:

<?xml version="1.0" encoding="UTF-8"?>
<blueprint
    xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
      http://www.osgi.org/xmlns/blueprint/v1.0.0
      http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">  

      <bean init-method="init" class="org.apache.camel.spi.ComponentResolver" id="componentResolver"/>
    <bean id="mySimpleRegistry" class="org.apache.camel.impl.SimpleRegistry"></bean> 

    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
     <propertyPlaceholder id="dropbox" location="dropbox.properties"/>
      <route>
        <from uri="dropbox://get?appKey=<>;appSecret=<>;accessToken=<>;path=/"/>

        <to uri="file:camel/output"/>
      </route>
    </camelContext>
</blueprint>

但它什么都没做。所以我检查了使用bundle:diag。

的问题
Bundle 239
----------
Status: GracePeriod
Blueprint
22/03/17 14:49
Missing dependencies:
(&(component=dropbox)(objectClass=org.apache.camel.spi.ComponentResolver))

我不知道如何修复它。

1 个答案:

答案 0 :(得分:3)

转到servicemix控制台并使用以下命令:

feature:install camel-dropbox

重新启动捆绑包

restart nnn其中nnn是您的捆绑包我