Can Spring's PropertyPlaceholderConfigurer class read an entire properties file and resolve all the placeholders automatically for you? I know that the normal method of doing this is to create a PropertyPlaceholderConfigurer bean and do this when the application context starts up, but I'm in a situation where I need to do it before I start up the context.
I was hoping for a convenience method like
// Return filtered properties from user input file
Properties getProperties(FileInputStream myPropertiesFile);
I don't see anything like that in the Spring docs but I can't tell if that's because I'm looking in the wrong place or it doesn't exist.