Hi Guys,
I am having troubles using the custom properties configuration.
We are using the spring based configuration for our resources, so I simply
added the custom properties factory & custom configurer as the documentation
suggests, i.e.:
<bean id="customPropertiesFactory"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>WEB-INF/qc-wink.properties</value>
</list>
</property>
</bean>
<bean id="customConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="order" value="1" />
<property name="propertiesArray">
<list>
<props>
<prop key="wink.propertiesFactory">customPropertiesFactory</prop>
</props>
</list>
</property>
</bean>
My properties file is an exact duplicate of the default properties file, except
for the wink.httpMethodOverrideHeaders property which defines the relevant
headers.
Still, I get only the wink default properties.
Can you suggest why don't I get my custom properties initialized?
Thanks,
Lior