springMVC 使用WebApplicationContext獲取ApplicationContext對象


主要用於從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對象


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM