Hi, trying to instantiate a FileSystemXmlApplicationContext with a file that contains the following bean definition:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.Pr opertyPlaceholderConfigurer">
<property name="location">
<value>maxdresource.properties</value>
</property>
</bean>
This leads to a ClassNotFoundException with PropertyPlaceholderConfigurer being not found. If I include directly in code before instantiating the FileSystemXmlApplicationContext an instantiation of PropertyPlaceholderConfigurer it gives no problem at compile-time or runtime, showing the class is indeed on my classpath, so not sure what's different at run time including it in a bean definition. This is with version 2.0.3, any clues about what else I could try with it?
Thanks


Reply With Quote