Hello,
I'm using Spring 3.1 and
Tomcat 7.0.25. I'd like to get some custom property files loaded before the Spring Container processes my applicationContext.xml and initializes some beans in there. So after some research I found that a nice new way to do something like this in 3.1 is to use a custom ApplicationContextInitializer class. I tied it in my web.xml like this:
Then I wrote my class here:
It all works fine except for one Major problem. Beans inside my applicationContext.xml are getting initalized before my ContextPropsLoader code is getting executed. I know this by the errors it is showing, and by running it in the debugger and seeing the errors before it gets to the ContextPropsLoader code:
The db.driver.class.postgresql property is defined in my ContextPropsLoader, but too late after bean initialization.
Suggestions? Anyway to get that code to run sooner or the beans to initialize later?
Thanks for reading.