Web 在 Servlet 栈上 --- Web on Servlet Stack

    预计阅读时间: 2 分钟

    Spring Web MVC is the original web framework built on the Servlet API and has been included in the Spring Framework from the very beginning. The formal name, "Spring Web MVC," comes from the name of its source module ( spring-webmvc), but it is more commonly known as "Spring MVC".
    Spring Web MVC 是基于 Servlet API 构建的原始 Web 框架,从一开始就被包含在 Spring 框架中。正式名称“Spring Web MVC”来源于其源模块的名称( spring-webmvc ),但它更常被称为“Spring MVC”。

    Parallel to Spring Web MVC, Spring Framework 5.0 introduced a reactive-stack web framework whose name, "Spring WebFlux," is also based on its source module ( spring-webflux). This chapter covers Spring Web MVC. The next chapter covers Spring WebFlux.
    与 Spring Web MVC 并行,Spring Framework 5.0 引入了一个基于响应式栈的 Web 框架,其名称“Spring WebFlux”也基于其源模块( spring-webflux )。本章涵盖 Spring Web MVC。下一章将涵盖 Spring WebFlux。

    For baseline information and compatibility with Servlet container and Java EE version ranges, see the Spring Framework Wiki.
    关于基线信息和与 Servlet 容器以及 Java EE 版本范围的兼容性,请参阅 Spring 框架维基。