SpringMVC和SSM的执行流程

一、SpringMVC的执行流程

前端发送的所有请求都会到DispatcherServlet,DispatcherServlet会询问一个或者多个HandlerMapping,HandlerMapping会根据url来找到具体的controller处理器,之后HandlerAdapter会根据对应处理器来执行相应的controller方法,controller会调用对应的service业务层代码,service会调用对应的持久层mapper方法,mapper会进行数据库操作,之后HandlerAdapter会给DispatcherServlet返回ModelAndView对象,DispatcherServlet会将ModelAndView对象交给ViewReslover进行视图解析,解析为一个View对象返回DispatcherServlet,DispatcherServlet会将Model对象交给View进行处理,最终view对象会携带model中的数据返回给前端进行页面渲染。

二、SSM的完整执行流程

web.xml

XML 复制代码
<?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"
         metadata-complete="true">

    <servlet>
        <servlet-name>dispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>

    <filter>
        <filter-name>characterEncodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>characterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    
</web-app>

applicationContext.xml

XML 复制代码
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!-- 开启注解扫描 -->
    <context:component-scan base-package="com.qcby"></context:component-scan>

    <!--加载连接数据库的参数文件-->
    <!--<context:property-placeholder location="classpath:jdbc.properties"/>-->
    <!--配置数据库连接池交给spring管理  采用的是第三方的  阿里巴巴的Druid连接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.driver" />
        <property name="url" value="localhost:3306/db" />
        <property name="username" value="root" />
        <property name="password" value="123456" />
    </bean>

    <!--创建和数据库连接的会话工厂对象交给spring去管理
        <property name="configLocation" value="classpath:sqlMapConfig.xml"></property>
        优化直接加载sql文件
        省略myBatis的总配置文件
    -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <property name="configLocation" value="classpath:SqlMapConfig.xml"></property>
    </bean>

    <bean id="mapperScan" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
        <property name="basePackage" value="com.qcby.mapper"></property>
    </bean>

</beans>

springmvc.xml

XML 复制代码
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       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
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.qcby.controller"></context:component-scan>
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp" />
    </bean>
    <mvc:default-servlet-handler />

</beans>

SqlMapConfig.xml

XML 复制代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

    <!--<environments default="mysql">-->
        <!--<environment id="mysql">-->
            <!--<transactionManager type="JDBC"></transactionManager>-->
            <!--<dataSource type="POOLED">-->
                <!--<property name="driverclass" value="com.mysql.cj.jdbc.driver" />-->
                <!--<property name="url" value="localhost:3306/db" />-->
                <!--<property name="username" value="root" />-->
                <!--<property name="password" value="123456" />-->
            <!--</dataSource>-->
        <!--</environment>-->
    <!--</environments>-->

    <mappers>

    </mappers>

</configuration>

SSM 整合的实现流程可从配置与容器协同的角度系统梳理:首先,通过 web.xml 配置作为入口,注册 SpringMVC 的核心 DispatcherServlet,指定其加载 springmvc.xml 配置文件以初始化 MVC 容器,同时配置 ContextLoaderListener 加载 applicationContext.xml 来初始化 Spring 根容器,实现 Web 层与业务层容器的分离与协同,此外还配置字符编码过滤器解决请求编码问题;在 springmvc.xml 中,通过组件扫描指定 controller 层包路径,确保控制器被 MVC 容器管理,配置 InternalResourceViewResolver 指定 JSP 视图的前缀和后缀实现视图解析,并开启默认 Servlet 处理器处理静态资源,完成 Web 层对请求的接收、分发及视图响应配置;在 applicationContext.xml 中,首先通过组件扫描管理除 controller 外的 service、mapper 等组件,接着配置 Druid 数据源并注入数据库连接信息,然后定义 SqlSessionFactoryBean,关联数据源并指定 MyBatis 的核心配置文件 SqlMapConfig.xml,实现 Spring 对 MyBatis 会话工厂的管理,再通过 MapperScannerConfigurer 扫描 mapper 接口包,自动生成代理对象并交给 Spring 管理,从而让 Spring 容器整合 MyBatis 的数据访问层;而 SqlMapConfig.xml 作为 MyBatis 的配置文件,主要用于定义 mapper 映射关系(示例中暂未配置具体 mapper),其配置被 Spring 的 SqlSessionFactoryBean 加载,替代了 MyBatis 自身的环境配置,最终形成 "Web 层(SpringMVC)接收请求→调用业务层(Spring 管理的 Service)→业务层调用数据访问层(Spring 整合 MyBatis 生成的 Mapper 代理)→数据库交互→视图响应" 的完整流程,实现三者的无缝整合。

相关推荐
踏浪无痕4 小时前
手写Spring事务框架:200行代码揭开@Transactional的神秘面纱( 附完整源代码)
spring boot·spring·spring cloud
踏浪无痕4 小时前
5个测试用例带你彻底理解Spring事务传播行为( 附完整源代码)
spring boot·spring·spring cloud
一 乐5 小时前
购物|明星周边商城|基于springboot的明星周边商城系统设计与实现(源码+数据库+文档)
java·数据库·spring boot·后端·spring
y1y1z5 小时前
Spring框架教程
java·后端·spring
稚辉君.MCA_P8_Java5 小时前
Gemini永久会员 快速排序(Quick Sort) 基于分治思想的高效排序算法
java·linux·数据结构·spring·排序算法
I***t7165 小时前
【MyBatis】spring整合mybatis教程(详细易懂)
java·spring·mybatis
z***02606 小时前
SpringBoot创建动态定时任务的几种方式
java·spring boot·spring
q***31897 小时前
使用 Logback 的最佳实践:`logback.xml` 与 `logback-spring.xml` 的区别与用法
xml·spring·logback
就叫飞六吧8 小时前
Spring MVC 接口命名为什么会有 *.do/actions等身影?
java·spring·mvc