在web.xml中加入
<listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener>

这样系统会自动读取/WEB-INF/applicationContext.xml

如果自己定义文件名,还需要增加
<context-param> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> </context-param>

此时的applicationContext.xml在src目录下