To load your application context you have to mention it explicitly in web.xml. Like below. The name application-context.xml and location may differ
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/application-context.xml</param-value>
</context-param>