ssm框架整合——父子容器

首先我们配置mvc,从spring官方网站我们可以直接找到mvc的的配置文件,以及例子。这时候我们直接从官方网站复制过来就可以了。具体操作流程如下
在这里插入图片描述mvc配置文件
在这里插入图片描述mvc的实例,可以将这个例子直接复制到上面的配置文件中
在这里插入图片描述下面是我写好的一个配置文件,这个配置中有两个容器,一个是父容器,一个是子容器。可以看出父容器其实就是一个上下文加载监听器,也就是在服务器构建的时候就会创建一个WebApplicationContext容器,并将配置文件中相应的内容加载到容器中。
子容器就是一个分派服务器,相当于一个路由,当外部访问来的时候,会根据访问地址提供相应的服务。

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
  <display-name>day14</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <!-- 启动spring root context (父容器)xmlWebApplicationContext容器 -->
     <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
 <!-- spring root context (父容器)配置文件 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/root-context.xml</param-value>
    </context-param>

	<!-- 启动 spring app context (子容器)xmlWebApplicationContext容器  -->
    <servlet>
        <servlet-name>app</servlet-name>
   		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- spring app context (自容器) 配置文件 -->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring/app-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>app</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值