如何在Eclipse中配置我的Web应用程序(基于Servlet并部署到Tomcat)以使用Spring框架。我只需要IoC容器(仅限Bean和ApplicationContext),而不是Spring MVC。如何为此配置web.xml?
此致
答案 0 :(得分:6)
一种方法是将其放在web.xml
:
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
并在applicationContext.xml
中设置WEB-INF
,或者以这种方式配置其位置(再次在web.xml
中)
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:applicationContext.xml
</param-value>
</context-param>