From 012f4b44cb259c7237e28aae59810fbc9623807e Mon Sep 17 00:00:00 2001 From: asahi Date: Tue, 11 Mar 2025 19:16:50 +0800 Subject: [PATCH] =?UTF-8?q?doc:=20webflux=E6=96=87=E6=A1=A3=E8=A1=A5?= =?UTF-8?q?=E5=85=85=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spring/webflux/spring webflux.md | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/spring/webflux/spring webflux.md b/spring/webflux/spring webflux.md index c69cdee..eac55bf 100644 --- a/spring/webflux/spring webflux.md +++ b/spring/webflux/spring webflux.md @@ -1,3 +1,40 @@ +- [Spring Webflux](#spring-webflux) + - [Concept](#concept) + - [核心机制](#核心机制) + - [reactive](#reactive) + - [back pressure](#back-pressure) + - [reactive stream](#reactive-stream) + - [编程模型](#编程模型) + - [并发模型](#并发模型) + - [spring mvc](#spring-mvc) + - [webflux](#webflux) + - [调用阻塞api](#调用阻塞api) + - [Reactive Core](#reactive-core) + - [HttpHandler](#httphandler) + - [server api adapters](#server-api-adapters) + - [Reactor Netty](#reactor-netty) + - [Undertow](#undertow) + - [Tomcat](#tomcat) + - [Jetty](#jetty) + - [WebHandler API](#webhandler-api) + - [bean types for WebHttpHandlerBuilder auto-detect](#bean-types-for-webhttphandlerbuilder-auto-detect) + - [Form Data](#form-data) + - [Multipart Data](#multipart-data) + - [Filter](#filter) + - [UrlHandler](#urlhandler) + - [Exceptions](#exceptions) + - [Logging](#logging) + - [Log Id](#log-id) + - [Appenders](#appenders) + - [DispatcherHandler](#dispatcherhandler) + - [DispatcherHandler委托](#dispatcherhandler委托) + - [Processing](#processing) + - [Result Handling](#result-handling) + - [Annotated Controllers](#annotated-controllers) + - [@Controller](#controller) + - [AOP](#aop) + + # Spring Webflux ## Concept ### 核心机制