ClassNotFoundException : org.springframework.web.context.ContextLoaderListener
Problem The ContextLoaderListener is used to integrate Spring with other web application. <!– file : web.xml –> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/Spring/applicationContext.xml</param-value> </context-param> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> And the common error message is, your server can not find this Spring ContextLoaderListener class during the server start up. SEVERE: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.ClassNotFoundException: …