您的位置:首页 > 其它

使用servicemix的camel的实例--查看日志--任务挂起命令--附带官网pdf--api

2014-01-16 11:08 337 查看
1

常用命令 都在文档的下面pdf中,就不一一介绍了



首先启动servicemix.bat

写一个bluepoint.xml放在deploy目录下



文件的内容是:

<?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"
xmlns:jaxrs="http://cxf.apache.org/blueprint/jaxrs"
xsi:schemaLocation=" http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://cxf.apache.org/blueprint/jaxrs http://cxf.apache.org/schemas/blueprint/jaxrs.xsd">

<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="file:camel/input"/>
<log message="Moving ${file:name} to the output directory"/>
<to uri="file:camel/output"/>
</route>
</camelContext>

</blueprint>


把 input目录下文件转移的哦啊output目录下

启动后文件转移,并且

使用如下命令会发生暂停,用start后文件又消失,具体内容都在pdf中,请查看



4 官网api内容:

无法粘贴图片,请使用如下url查看:
http://servicemix.apache.org/docs/4.5.x/quickstart/quickstart.pdf
实例图:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐