0
我已經創建了自己的分量,我希望做同樣的事情到這一點:使用Apache Camel和Spring,我可以使用屬性來構建uri嗎?
<camel:camelContext id="camel1">
<camel:route>
<camel:from uri="mysch://realthing?network=${network}" id="testEndpoint"/>
我想$ {網絡}來自屬性文件(使用Spring的屬性佔位符):
<context:property-placeholder location="classpath:test.properties"/>
我該怎麼做?