美文网首页
Spring--最简web.xml配置

Spring--最简web.xml配置

作者: 栗子酥小小 | 来源:发表于2018-07-18 22:50 被阅读0次
    <?xml version="1.0" encoding="UTF-8"?>
    <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/applicationContext.xml</param-value>
        </context-param>
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
        <servlet>
            <servlet-name>dispatcher</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>dispatcher</servlet-name>
            <url-pattern>/</url-pattern>
        </servlet-mapping>
    </web-app>
    
    • DispatcherServlet和ContextLoaderListener提供了在Web容器中对Spring的接口,也就是说,这些接口与Web容器耦合是通过ServletContext来实现的。这个ServerContext为Spring的IOC容器提供了一个宿主环境,在宿主环境中,Spring MVC建立了一个IOC容器的体系。这个IOC容器体系是通过ContextLoaderListener的初始化来建立的,在建立IOC容器体系之后,把DispatchServlet作为SpringMVC处理web请求的转发器建立起来,从而完成响应HTTP请求的准备。
    • 有了这些基本配置,建立在IOC容器基础上的Spring MVC就可以正常地发挥作用了。

    相关文章

      网友评论

          本文标题:Spring--最简web.xml配置

          本文链接:https://www.haomeiwen.com/subject/ijzapftx.html