java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Spring XmlWebApplicationContext

Spring中XmlWebApplicationContext的实现

作者:龙大.

XmlWebApplicationContext是Spring Framework中的一个重要类,本文主要介绍了Spring中XmlWebApplicationContext,具有一定的参考价值,感兴趣的可以了解一下

XmlWebApplicationContext 是 Spring Framework 中的一个重要类,位于 org.springframework.web.context.support 包中。它是 AbstractRefreshableWebApplicationContext 的实现,用于在 Web 应用程序中从 XML 配置文件加载 Spring bean 定义。

主要功能

关键方法

以下是 XmlWebApplicationContext 中一些重要的方法和功能:

使用示例

以下是使用 XmlWebApplicationContext 的基本示例:

1. 引入 Spring 依赖

在 Maven 项目的 pom.xml 中引入 Spring 的 Web 依赖:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>5.3.20</version>
</dependency>

2. 创建 Bean 类

public class MyService {
    public void serve() {
        System.out.println("Service is running...");
    }
}

3. 创建 XML 配置文件

在 src/main/webapp/WEB-INF 目录下创建一个 beans.xml 文件,内容可以如下:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="myService" class="MyService" />
</beans>

4. 配置 web.xml

在 web.xml 中配置 XmlWebApplicationContext,使用 ContextLoaderListener 加载应用上下文:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
         http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/beans.xml</param-value>
    </context-param>

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

    <servlet>
        <servlet-name>myServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>myServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

5. 在 Servlet 中获取 Bean

import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

@WebServlet("/myServlet")
public class MyServlet extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        
        // 获取 WebApplicationContext
        WebApplicationContext context = WebApplicationContextUtils
                .getWebApplicationContext(getServletContext());

        MyService myService = (MyService) context.getBean("myService");
        myService.serve(); // 输出 "Service is running..."
    }
}

结果

当 servlet 被访问时,你将看到输出:

Service is running...

注意事项

结论

 到此这篇关于Spring中XmlWebApplicationContext的文章就介绍到这了,更多相关Spring XmlWebApplicationContext内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

阅读全文