使用Apache Camel和Spring,我可以使用属性构建uri吗?

时间:2011-05-30 15:06:14

标签: java spring apache-camel

我创建了自己的组件,我想做类似的事情:

<camel:camelContext id="camel1">
    <camel:route>
        <camel:from uri="mysch://realthing?network=${network}" id="testEndpoint"/>

我希望$ {network}来自属性文件(使用Spring属性占位符):

<context:property-placeholder location="classpath:test.properties"/>

我该怎么做?

1 个答案:

答案 0 :(得分:1)