Hi
When I put these lines:
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
my appln can't load at all. When I go to http://localhost:8080/app it's not
loaded. But when I remove those lines it loads correctly. I've put the
necessary lib containing
org.springframework.web.context.ContextLoaderListener in ./app/WEB-INF/lib.
My setup is Tomcat 5.5.31. Context-param is set:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springContext.xml</param-value>
</context-param>
No stack trace is shown. The error message in log is:
03-Nov-2010 10:21:48 INFO HostConfig:863 - Deploying web application archive
wma.war
03-Nov-2010 10:21:49 ERROR StandardContext:4253 - Error listenerStart
03-Nov-2010 10:21:49 ERROR StandardContext:4280 - Context [/wma] startup failed
due to previous errors
When I set the logging to DEBUG level, I don't see anything extra ordinary.
Thanks
Will