Web

Spring Boot 非常适合进行 Web 应用程序开发。你可以使用嵌入式 Tomcat、Jetty、Undertow 或 Netty 创建一个独立的 HTTP 服务器。大多数 Web 应用程序都使用 spring-boot-starter-web 模块快速启动并运行。你还可以选择使用 spring-boot-starter-webflux 模块来构建响应式 Web 应用程序。

Spring Boot is well suited for web application development. You can create a self-contained HTTP server by using embedded Tomcat, Jetty, Undertow, or Netty. Most web applications use the spring-boot-starter-web module to get up and running quickly. You can also choose to build reactive web applications by using the spring-boot-starter-webflux module.

如果你尚未开发 Spring Boot Web 应用程序,则可以按照 Getting started 部分中的“Hello World!”示例操作。

If you have not yet developed a Spring Boot web application, you can follow the "Hello World!" example in the Getting started section.