# 8. 网络

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

如果您还没有开发过 Spring Boot Web 应用程序，您可以按照“Hello World!”进行操作。[*入门*](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#getting-started.first-application)部分中的示例。

####
