Solved my own problem.
I needed to have the following in my web.xml (apparently) to load the application context correctly:
<context-param>
<param-name>contextConfigLocation</param-name>...
Type: Posts; User: texomaleo; Keyword(s):
Solved my own problem.
I needed to have the following in my web.xml (apparently) to load the application context correctly:
<context-param>
<param-name>contextConfigLocation</param-name>...
I have a virtually empty applicationContext.xml and web.xml as per the betterpetshop example. In my Home page, I (try to) instantiate the appContext in a finishLoad method via
...