Springboot 的Servlet Web 应用、响应式 Web 应用(Reactive)以及非 Web 应用(None)的特点和适用场景

基于 Servlet 的 Web 应用 (Servlet Web)

特点

使用传统的 Servlet API 和 Spring MVC 框架。

采用阻塞 I/O 模型,每个请求都会占用一个线程直到请求处理完毕。

适合处理同步请求-响应模式的应用。

依赖

spring-boot-starter-web:这是核心依赖,它会自动引入 Tomcat 作为默认的嵌入式服务器。也可以通过排除默认的 Tomcat 依赖并添加 Jetty 或 Undertow 依赖来更换服务器。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
主要技术栈

Spring MVC:用于处理 HTTP 请求和响应。

Thymeleaf, JSP, FreeMarker:用于模板引擎,生成 HTML 页面。

Jackson:用于 JSON 处理。

Tomcat, Jetty, Undertow:嵌入式 Web 服务器。

应用场景

传统的 Web 应用。

RESTful API 服务。

表单提交处理。

文件上传下载。

示例代码
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
public class ServletWebApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServletWebApplication.class, args);
    }

    @RestController
    public static class HelloController {

        @GetMapping("/hello")
        public String hello() {
            return "Hello, Servlet Web!";
        }
    }
}

响应式 Web 应用 (Reactive Web)

特点

基于响应式编程模型,使用非阻塞 I/O 模型。

适用于高并发和大数据流处理的应用。

使用 Spring WebFlux 框架,支持异步和非阻塞处理。

依赖

spring-boot-starter-webflux:这是核心依赖,它会自动引入 Netty 作为默认的嵌入式服务器。也可以使用 Tomcat 或 Undertow 作为服务器,但通常 Netty 是更好的选择。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
主要技术栈

Spring WebFlux:用于处理 HTTP 请求和响应。

Reactor:响应式编程库,用于异步和非阻塞处理。

Netty, Tomcat, Undertow:嵌入式 Web 服务器,Netty 是默认选择。

RSocket:用于构建响应式微服务。

应用场景

高并发处理,例如聊天应用、实时数据处理。

微服务架构中的服务。

实时数据流处理。

低延迟响应要求高的应用。

示例代码
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.reactive.function.server.RouterFunction;
import org.springframework.web.reactive.function.server.ServerResponse;
import org.springframework.context.annotation.Bean;
import org.springframework.web.reactive.function.server.RequestPredicates;

import static org.springframework.web.reactive.function.server.RequestPredicates.GET;
import static org.springframework.web.reactive.function.server.RouterFunctions.route;

@SpringBootApplication
public class ReactiveWebApplication {

    public static void main(String[] args) {
        SpringApplication.run(ReactiveWebApplication.class, args);
    }

    @Bean
    public RouterFunction<ServerResponse> routes() {
        return route(GET("/hello"), request -> ServerResponse.ok().bodyValue("Hello, Reactive Web!"));
    }
}

非 Web 应用 (None)

特点

不包含 Web 服务器,适用于后台处理、定时任务、批处理作业等不需要 Web 服务器的应用。

可以使用 Spring 的各种功能,如依赖注入、AOP、事务管理等。

依赖

不需要引入 spring-boot-starter-webspring-boot-starter-webflux

根据需求引入其他必要的依赖,如 spring-boot-starter-data-jpaspring-boot-starter-quartz 等。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
主要技术栈

Spring Core:核心框架,提供依赖注入、AOP 等功能。

Spring Data JPA:简化数据库访问。

Quartz:用于定时任务调度。

Spring Batch:用于批处理作业。

应用场景

后台任务调度。

数据处理和批处理作业。

命令行工具。

定时任务。

示例代码
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;

@SpringBootApplication
@EnableScheduling
public class NonWebApplication {

    public static void main(String[] args) {
        SpringApplication.run(NonWebApplication.class, args);
    }

    @Scheduled(fixedRate = ½000)
    public void performTask() {
        System.out.println("Executing scheduled task...");
    }
}

总结

Servlet Web 适用于传统的 Web 应用和 RESTful 服务。

Reactive Web 适用于高并发和低延迟要求的应用。

Non Web 适用于后台处理、定时任务和批处理作业。

选择合适的应用类型取决于具体的需求和技术栈偏好。

相关推荐
岁岁岁平安12 分钟前
springboot实战(15)(注解@JsonFormat(pattern=“?“)、@JsonIgnore)
java·spring boot·后端·idea
Oak Zhang13 分钟前
TheadLocal出现的内存泄漏具体泄漏的是什么?弱引用在里面有什么作用?什么情景什么问题?
java·系统安全
数据小小爬虫16 分钟前
如何利用Java爬虫获得1688店铺详情
java·开发语言
天若有情67317 分钟前
c++框架设计展示---提高开发效率!
java·c++·算法
Reese_Cool35 分钟前
【数据结构与算法】排序
java·c语言·开发语言·数据结构·c++·算法·排序算法
TheITSea1 小时前
云服务器宝塔安装静态网页 WordPress、VuePress流程记录
java·服务器·数据库
AuroraI'ncoding1 小时前
SpringMVC接收请求参数
java
九圣残炎2 小时前
【从零开始的LeetCode-算法】3354. 使数组元素等于零
java·算法·leetcode
天天扭码2 小时前
五天SpringCloud计划——DAY1之mybatis-plus的使用
java·spring cloud·mybatis
程序猿小柒3 小时前
leetcode hot100【LeetCode 4.寻找两个正序数组的中位数】java实现
java·算法·leetcode