我想在外部属性文件的多播标记中设置超时属性。我可以在 uri 等定义中
使用{{property.name}}语法而没有问题的属性。
但是下面的用法似乎是不允许的。任何想法如何解决/正确的方法?
<camel:camelContext id="myCamelContext" xmlns="http://camel.apache.org/schema/spring">
<propertyPlaceholder id="korek_config" location="file:${config.path}/my-config.properties"/>
<route>
<from uri="...."/>
<multicast parallelProcessing="true"
strategyRef="balancesAggregator"
timeout="{{retrieve.balances.timeout}}">
<to uri="direct:balancesRead"/>
<bean ref="serviceBean" method="getBalances"/>
</multicast>
</route>
</camel:camelContext>