码迷,mamicode.com
首页 > 移动开发 > 详细

springMVC 使用WebApplicationContext获取ApplicationContext对象

时间:2018-09-07 13:55:18      阅读:518      评论:0      收藏:0      [点我收藏+]

标签:getattr   XML   com   blog   net   startup   bean   target   conf   

主要用于从application中获取bean 

1、applicationContext

在web.xml中使用listener配置

 

<context-param>
 
<param-name>contextConfigLocation</param-name>
 
<param-value>classpath:applicationContext.xml</param-value>
 
</context-param>
 
<listener>
 
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 
</listener>

 

使用WebApplicationContext获取

WebApplicationContext webApplicationContext =ContextLoader.getCurrentWebApplicationContext();  

 





 

2、springMVC-serlvet

在web.xml中使用servlet配置

 

<servlet>
 
<servlet-name>springMVC</servlet-name>
 
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
 
<init-param>
 
<param-name>contextConfigLocation</param-name>
 
<param-value>classpath:springMVC-servlet.xml</param-value>
 
</init-param>
 
<load-on-startup>1</load-on-startup>
 
</servlet>
 
<servlet-mapping>
 
<servlet-name>springMVC</servlet-name>
 
<url-pattern>/</url-pattern>
 
</servlet-mapping>

 

 

使用ServletContext获取

ServletContext servletContext=request.getSession().getServletContext();
 
WebApplicationContext webApplicationContext = (WebApplicationContext)servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);

 

参考:springMVC 使用WebApplicationContext获取ApplicationContext对象

springMVC 使用WebApplicationContext获取ApplicationContext对象

标签:getattr   XML   com   blog   net   startup   bean   target   conf   

原文地址:https://www.cnblogs.com/aspirant/p/9603618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!