Hi all,
I have a compedium property defined this way in my camel-context.xml file:
but to my surprise, I got this error, which basically explains itself:
org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'org.springframework.integration.ip.udp.MulticastSendingMessageHandler#0' defined in null: Could not resolve placeholder 'rafiki.server.ip'
at org.springframework.beans.factory.config.PropertyPlaceholderConfigurer.processProperties(PropertyPlaceholderConfigurer.java:287)[68:org.springframework.beans:3.0.5.RELEASE]
Any idea how this can be resolved. And oh, I have 3 different compedium properties definition in same file and I was able to access them. But I cant access thisone from my spring-integration component.
Resolved.
Resolved by setting the ignore-unresolvable to true
<ctx:property-placeholder ignore-unresolvable="true" properties-ref="rafiki.properties" />
Thanks.