简体   繁体   中英

Using Apache Camel and Spring, can I build uri using properties?

I have created my own component and I want to do something similar to this:

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

I want ${network} to come from a properties file (using Spring properties placeholder):

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

How can I do that?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM