I would like read property file entry values in mailSender bean, some how i am not getting the ${smtp.host} value.
Please find below my entries and let me know the problem


<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.Pr opertyPlaceholderConfigurer" scope="singleton" lazy-init="false" >
<property name="location">
<value>classpath:smtp_config.properties</value>
</property>
</bean>

<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailS enderImpl" depends="propertyConfigurer">
<property name="host"><value>${smtp.host}</value></property>
</bean>



smtp_config.properties file
smtp.host=EXCH-TEST.soft-consulting.com