標籤:
在web環境下(web.xml)如何配置applicationContext.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>
通過如下方法取出applicationContext執行個體:
ApplicationContext ac=WebApplicationContextUtils.getWebApplicationContext(this.getServletContext);
* 如何將spring加入web容器中
在web.xml中加入如下同容,在啟動web伺服器時載入/WEB-INF/applicationContext.xml中的內容。
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>
org.springframework.web.context.ContextLoaderServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
通過如下類得到ApplicationContext執行個體
WebApplicationContextUtils.getWebApplicationContext
Web環境下applicationContext.xml檔案配置