标题: 【JavaEE】Spring Web MVC [打印本页] 作者: 九天猎人 时间: 2024-12-28 08:19 标题: 【JavaEE】Spring Web MVC 目录
一、Spring Web MVC简介
1.1 MVC简介
1.2 Spring MVC
1.3 @RequestMapping注解
1.3.1 利用
1.3.2 @RequestMapping的请求设置
1.3.2.1 方法1
1.3.2.2 方法2
二、Postman先容
2.1 创建请求
2.2 界面如下:
2.3 传参先容
一、Spring Web MVC简介
官方文档先容:
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”.
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. For reactive-stack web applications, see Web on Reactive Stack.
For baseline information and compatibility with Servlet container and Jakarta EE version ranges, see the Spring Framework Wiki.
翻译:
Spring Web MVC 是基于 Servlet API 构建的原始 Web 框架,从一开始就包含在 Spring 框架中。正式名称“Spring Web MVC”来自其源模块的名称 (spring-webmvc),但更常见的名称是“Spring MVC”。
与 Spring Web MVC 并行,Spring Framework 5.0 引入了一个反应式堆栈 Web 框架,其名称“Spring WebFlux”也基于其源模块 (spring-webflux)。本章先容 Spring Web MVC。对于反应式堆栈 Web 应用步伐,请参阅反应式堆栈上的 Web。
有关 Servlet 容器和 Jakarta EE 版本范围的基线信息和兼容性,请参阅 Spring Framework Wiki。
servlet:
Servlet 是种实现动态的技术. 精确来讲Servlet是套 Java Web 开发的规范,或者说是套 Java Web 开发的技术尺度. 只有规范并不能做任何变乱,必须要有去实现它. 所谓实现 Servlet 规范,就是真正编写代码去实现 Servlet 规范提到的各种功能,包罗类、法、属性等.
Servlet 规范是开放的,除了 Sun 公司,其它公司也可以实现 Servlet 规范,前常的实现了
Servlet 规范的产物包罗 Tomcat、Weblogic、Jetty、Jboss、WebSphere等,它们都被称
为"Servlet 容器". Servlet 容器来管理步伐员编写的Servlet 类.
1.1 MVC简介
MVC:
MVC 是 Model View Controller 的缩写,它是软件程中的种软件架构设计模式,它把软件系统分为模型、视图和控制器三个根本部分.