In Spring I can do this:
<bean id="propertiesUrl" class="org.springframework.core.io.UrlResource">
<constructor-arg>
<jee:jndi-lookup
jndi-name="url/CamelFlatFileToQueueProperties"/>
</constructor-arg>
</bean>
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" ref="propertiesUrl"/>
</bean>
I cannot see how to do that using the new Properties. Any advice?
Thanks
Ray
--
View this message in context:
http://camel.465427.n5.nabble.com/2-4-0-Properties-via-URL-tp2651118p2651118.html
Sent from the Camel - Users mailing list archive at Nabble.com.