Is it possible to load springs application context only on demand? Scenario is as following: I have a web application with a setup page for the user to enter database properties. Those are stored within a properties file and loaded with springs PropertyPlaceHolderConfigurer into the application-context.xml when restarting after setup.
However, if I do not have initial valid database information, spring fails to start. So, the setup page won't show up. Is there any clean way to prevent the context from being loaded?
One solution that comes to my mind would be to remove the context listener in web.xml and write it back after setup, however this is rather a nasty hack than a clean solution.