如果您想要在自己所定義的Servlet類別中使用Spring的容器功能,則也可以使用
org.springframework.web.context.ContextLoaderListener,例如在web.xml中使用<
listener>標籤加以定義:
...
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
...
ContextLoaderListener預設會讀取applicationContext.xml,您可以指定自己的定義檔,只要在<context-param>中指定"contextConfigLocation"參數,例如:
...
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/beans-config.xml,
→ /WEB-INF/demo-service.xml</param-value>
</context-param>
...
接著您可以在自定義的Servlet中使用
org.springframework.web.context.support.WebApplicationContextUtils,從
ServletContext中取得org.springframework.web.context.WebApplicationContext,例如:
WebApplicationContext
ctx =
WebApplicationContextUtils.
getRequiredWebApplicationContext(
this.getServletContext());
WebApplicationContext實作了ApplicationContext介面,是Spring專為Servlet的Web應用程式設計的
ApplicationContext實作類別,在取得WebApplicationContext之後,您可以利用它來取得Bean定義檔中定義的
Bean實例,例如:
Date date = (Date)
ctx.getBean("dateBean");
在不支援Listener設定的容器上(例如Servlet
2.2以更早的版本),您可以使用org.springframework.web.context.ContextLoaderServlet來取代上面的ContextLoaderListener的設定,例如:
...
<servlet>
<servlet-name>contextLoader</servlet-name>
<servlet-class>
org.springframework.web.context.ContextLoaderServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
...
綜合以上的敘述,撰寫一個簡單的範例來示範完整的組態方式,假設您撰寫了一個簡單的Servlet程式,作用為提供簡單的報時功能,如下所示:
package onlyfun.caterpillar;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context. support.WebApplicationContextUtils;
public class TimeServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
WebApplicationContext ctx = WebApplicationContextUtils. getRequiredWebApplicationContext(
this.getServletContext());
PrintWriter out = res.getWriter();
out.println(ctx.getBean("dateBean"));
}
}
這個Servlet中使用了WebApplicationContext來嘗試取得dateBean,您可以在web.xml中定義ContextLoaderListener與Bean定義檔的位置,例如:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee → http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
<session-config>
<session-timeout> 30 </session-timeout>
</session-config>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/beans-config.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>time</servlet-name>
<servlet-class>onlyfun.caterpillar.TimeServlet </servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>time</servlet-name>
<url-pattern>/time.do</url-pattern>
</servlet-mapping> </web-app>
在<context-param>的"contextConfigLocation"屬性中,設定了Bean定義檔的位置與名稱,Bean定義檔的內容如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING/DTD BEAN/EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="dateBean" class="java.util.Date" singleton="false"/>
</beans>
您可以連接至TimeServlet,結果會顯示連接上的時間。
分享到:
相关推荐
总的来说,Spring在Web容器中的启动过程涉及到`WebApplicationContext`的创建、配置文件的解析、bean定义的加载和bean的实例化。通过这种方式,Spring能够紧密地集成到Web环境中,提供全面的依赖注入和控制反转功能...
`<context-param>`中的`webAppRootKey`定义了Web应用程序的根目录键,而`<listener>`标签注册了两个监听器:`ContextLoaderListener`和`IntrospectorCleanupListener`。 `ContextLoaderListener`是Spring提供的一种...
WebApplicationContext webApplicationContext = (WebApplicationContext) sc.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE); MyBean myBean = (MyBean) webApplicationContext....
总结来说,Spring IOC容器在Web容器中的启动涉及到创建`WebApplicationContext`,加载配置文件中的bean定义,然后通过`refresh()`方法实例化和初始化bean。这个过程确保了Web应用程序能够正确地配置和运行其依赖的...
对于一个Spring激活的web应用程序,可以通过使用Spring代码声明式的指定在web应用程序启动时载入应用程序上下文(WebApplicationContext),Spring的ContextLoader是提供这样性能的类,我们可以使用 ...
- **DAO层**:`UserDao`接口定义了获取用户信息的方法,而`UserDaoImpl`类实现了这些方法,并通过Hibernate的映射来查询数据库。 ```java public interface UserDao { List<User> getName(String id); } ...
这两套上下文分别是Spring的ApplicationContext和DispatcherServlet的WebApplicationContext。 首先,我们需要理解ApplicationContext。它是Spring的核心,负责管理所有的Bean。当应用程序启动时,通常会创建一个...
3. **自定义`WebApplicationInitializer`**:如果使用Java配置,可以通过实现`WebApplicationInitializer`接口来自定义WebApplicationContext的创建,使得AOP配置能够覆盖到全局ApplicationContext。 4. **使用`@...
在Web应用中,我们使用的是WebApplicationContext,它是ApplicationContext的子类,专门针对Web环境进行了扩展。在Spring中,Bean的实例化、管理和依赖注入都在这个容器中完成。 在`web.xml`中配置Spring,主要涉及...
WebApplicationContext是专门为Web应用设计的ApplicationContext子接口,它提供与Servlet环境集成的方法,如获取ServletContext。ConfigurableApplicationContext接口则提供了更多配置选项,如添加应用监听器,用于...
然后,调用 wac.refresh()来初始化上下文,这个过程包括解析配置文件、创建Bean定义、实例化Bean、依赖注入等。 2. DispatcherServlet 的初始化DispatcherServlet 是 SpringMVC 的核心组件,它负责处理HTTP请求。每...
依赖注入是Spring框架中最核心的部分之一,它允许开发者以声明的方式定义组件之间的依赖关系,从而降低各个组件之间的耦合度。 ### 几种Spring获取Bean的方法 #### 1. 通过`WebApplicationContext`获取Bean 在Web...
这一步骤读取配置文件,创建bean定义,以及初始化所有的bean。 2. **销毁WebApplicationContext**:在Web应用关闭时,`contextDestroyed()`方法会被调用,用来清理资源,关闭WebApplicationContext,释放所有bean的...
在Servlet中,可以通过`WebApplicationContext`接口的`getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE)`方法获取到Spring的根应用上下文,从而得到Service对象...
WebApplicationContext专为Web环境设计,它可以与Servlet容器集成,提供Web相关的上下文信息。 在具体实现中,XmlBeanFactory是一个基本的Bean工厂,它从XML配置文件中读取Bean定义。然而,随着Spring的发展,更多...
- 在 Spring MVC 中,这一过程非常重要,因为它允许开发者对 Bean 定义进行修改或增强,从而实现更复杂的配置需求。 #### 三、总结 Spring MVC 的初始化流程是其工作原理的核心部分之一。通过深入理解 `...
这个方法主要负责创建一个`WebApplicationContext`对象,这是Spring MVC的核心上下文,它包含所有bean的定义和配置。`initServletBean()`进一步调用了`initWebApplicationContext()`,将Servlet的`ServletContext`...
在`web.xml`中,使用`ContextLoaderListener`来初始化Spring的WebApplicationContext,确保在Filter执行之前Spring的上下文已经被加载。配置如下: ```xml <param-name>contextConfigLocation <param-value>/...
你可以通过`<context-param>`元素来定义`ApplicationContext`的配置参数,指明XML配置文件的位置。例如,如果你的配置文件是`springWebApplicationContext.xml`: ```xml <param-name>contextConfigLocation ...
这些过滤器可以被配置在`web.xml`中,与Servlet一样,通过`<filter>`和`<filter-mapping>`标签来定义。 至于容器,这里指的是Spring的IoC容器,它负责管理应用程序中的对象及其依赖关系。`WebApplicationContext`是...