Hi Salemi,
There is an option called local-override and set this as true
in context:property-placeholder and check if this helps you
context.xml
<context:property-placeholder location="classpath:sample.properties"
local-override="true" properties-ref="myProperties"/>
<util:properties id="myProperties">
</util:properties>
and import the above spring file in another spring file as below
<import resource="classpath:/META-INF/spring/context.xml">
<util:properties id="myProperties">
<prop key="input.uri">seda.in</prop>
</util:properties>
--
View this message in context:
http://camel.465427.n5.nabble.com/Is-it-possible-to-override-a-property-during-runtime-after-the-file-has-been-load-using-BridgeProperr-tp5738008p5738009.html
Sent from the Camel - Users mailing list archive at Nabble.com.