我昨天开始在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))
我不知道如何修复它。
答案 0 :(得分:3)
转到servicemix控制台并使用以下命令:
feature:install camel-dropbox
重新启动捆绑包
restart nnn
其中nnn是您的捆绑包我