Hi,
Is there a way to load the property files specified for a PropertyPlaceholderConfigurer from the classpath?
Thanks,
Marius
Hi,
Is there a way to load the property files specified for a PropertyPlaceholderConfigurer from the classpath?
Thanks,
Marius
Usually I just use classpath:<path>/<propertyFile> as the value for the file name/location.
ex. <value>classpath:mypackage/myproperties.properties</value>
ex. <value>classpath:mydir/myproperties.properties</value>
That worked, thanks a lot!
The syntax follows Spring's regular conventions for location Strings.