欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ApplicationContext 配置与使用

程序员文章站 2022-05-25 10:32:08
...

首先,在web.xml文件中配置:

<listener>
	<listener-class>		org.springframework.web.context.ContextLoaderListener
	</listener-class>
</listener>


或者:

<servlet>
	<servlet-name>context</servlet-name>
	    <servlet-class>	org.springframework.web.context.ContextLoaderServlet
	    </servlet-class>
	<load-on-startup>1</load-on-startup>
</servlet>



在java类中通过如下方法取出applicationContext实例:

	ApplicationContext ac=WebApplicationContextUtils.getWebApplicationContext(this.getServletContext);