I have modified system properties in dmk.sh to include extra file path as classpath
I have a property file in testfolder - test.propertiesCode:-classpath $CLASSPATH:/home/testfolder/ \
My bundle has the following in its spring xml
Code:<context:property-placeholder location="classpath*:test.properties" /> <bean id="test" class="com.pg.external.Test"> <property name="testProp" value="${testprop}"></property> </bean>
Now my test.properties is not found.
So it it expected to find the property fiel in classpath ?
when i change it to
<contextroperty-placeholder location="file:/home/testfolder/test.properties" />
it works fine . Am i doing anything wrong here ?


roperty-placeholder location="file:/home/testfolder/test.properties" />
