Skip to content

简介

SpringMVC可以说的上是当前最优秀的MVC框架,采用了松散耦合可插拔组件结构,比其他MVC框架更具扩展性和灵活性;为了提高框架的扩展性和灵活性,设计了松耦合可插拔的组件。理解SpringMVC的原理,在面试或工作中都十分的重要。

SpringMVC的原理在网络上到处都可以找得到,但是写的都很概括、零散;对应阅读源码经验较少的小伙伴来说, 自己去看源码被很多细节所干扰阻碍,不能够很好的抽离出springMVC原理的主线。

自己想和小伙伴一起从手写简易版的SmartMVC框架出发,理出SpringMVC的主线并深入理解SpringMVC的原理。框架代码开发加上文档编写大概花费时间一个月


项目结构

SmartMvc
├── docs -- 开发文档
├── smart-mvc -- 实现mvc功能的核心代码
├── smartmvc-springboot-autoconfigure -- SmartMvc的自动化配置
├── smartmvc-springboot-demo -- SmartMvc的demo项目
├── smartmvc-springboot-starter -- SmartMvc的starter
└── spring-mvc-demo -- SpringMVC的demo

IDE、源码、依赖版本

大家记得顺手给个star哦


约定

  • 为了便于后期理解和使用SpringMVC,所以在SmartMVC中所有组件的名称都和SpringMVC的保持一致
  • 为了让SpringMVC的核心流程更加的清晰,减少的干扰,我拿出了自己18米的砍刀大胆的砍掉了SpringMVC中很多细节流程,达到去枝干立主脑,让我们能够更加顺畅的理解请求的处理过程

文档目录

所有开发文档都在项目的docs目录下

  • 01 SmartMVC总体架构规划
  • 02 RequestMappingHandlerMapping初始化过程
  • 03 拦截器HandlerInterceptor
  • 04 HandlerMapping获取对应的Handler
  • 05 参数解析器HandlerMethodArgumentResolver
  • 06 返回解析器HandlerMethodReturnValueHandler
  • 07 Handler执行器InvocableHandlerMethod
  • 08 实现RequestMappingHandlerAdapter
  • 09 视图InternalResourceView、RedirectView
  • 10 视图解析器ViewResolver
  • 11 DispatcherServlet实现doDispatch来完成请求逻辑
  • 12 全局异常处理器HandlerExceptionResolver
  • 13 核心配置类WebMvcConfigurationSupport
  • 14 SmartMvc与SpringBoot集成(一)
  • 15 SmartMvc与SpringBoot集成(二)
  • 16 SmartMvc项目实战

SpringBoot项目中引入SmartMVC的步骤

1. 新建一个SpringBoot项目,在pom.xml中加入SmartMVC的starter

<dependency>
    <groupId>com.silently9527</groupId>
    <artifactId>smartmvc-springboot-starter</artifactId>
    <version>1.0.0-SNAPSHOT</version>
</dependency>

2. 修改SpringBoot生成的启动类,指定SmartMVC的ApplicationContextClass

@SpringBootApplication
public class SmartmvcSpringbootDemoApplication {

    public static void main(String[] args) {
        SpringApplication application = new SpringApplication(SmartmvcSpringbootDemoApplication.class);
        application.setApplicationContextClass(ServletWebServerApplicationContext.class);
        application.run(args);
    }
}