摘要:的這幾天看了看的請求處理流程,因為之前一直用的和,一開始對的處理流程有點懵逼,找不到入口,后來跟了代碼,在網上找了點資料,發現的入口在的方法該方法的作用就是把接收到的或者最終需要返回的,包裝轉換為和。
spring-cloud-gateway 的ReactorHttpHandlerAdapter
這幾天看了看spring-cloud-gateway的請求處理流程,因為之前一直用的springboot1.x和spring4,一開始對spring-cloud-gateway的處理流程有點懵逼,找不到入口,后來跟了代碼,在網上找了點資料,發現spring-cloud-gateway的入口在ReactorHttpHandlerAdapter的apply方法
public class ReactorHttpHandlerAdapter implements BiFunction> { private static final Log logger = HttpLogging.forLogName(ReactorHttpHandlerAdapter.class); private final HttpHandler httpHandler; public ReactorHttpHandlerAdapter(HttpHandler httpHandler) { Assert.notNull(httpHandler, "HttpHandler must not be null"); this.httpHandler = httpHandler; } @Override public Mono apply(HttpServerRequest reactorRequest, HttpServerResponse reactorResponse) { NettyDataBufferFactory bufferFactory = new NettyDataBufferFactory(reactorResponse.alloc()); try { ReactorServerHttpRequest request = new ReactorServerHttpRequest(reactorRequest, bufferFactory); ServerHttpResponse response = new ReactorServerHttpResponse(reactorResponse, bufferFactory); if (request.getMethod() == HttpMethod.HEAD) { response = new HttpHeadResponseDecorator(response); } return this.httpHandler.handle(request, response) .doOnError(ex -> logger.trace(request.getLogPrefix() + "Failed to complete: " + ex.getMessage())) .doOnSuccess(aVoid -> logger.trace(request.getLogPrefix() + "Handling completed")); } catch (URISyntaxException ex) { if (logger.isDebugEnabled()) { logger.debug("Failed to get request URI: " + ex.getMessage()); } reactorResponse.status(HttpResponseStatus.BAD_REQUEST); return Mono.empty(); } } }
該方法的作用就是把接收到的HttpServerRequest或者最終需要返回的HttpServerResponse,包裝轉換為ReactorServerHttpRequest和ReactorServerHttpResponse。
spring-webflux當然,這篇文章的主要內容不是談論spring-cloud-gateway了,因為之前一直用的spring4,所以對spring5當中的反應式編程范式和webflux不太了解,所以先寫個demo了解一下
第一步:引入相關pom,測試的相關pom根據自己的需要引入
org.springframework.boot spring-boot-starter-parent 2.1.4.RELEASE org.springframework.boot spring-boot-starter-webflux org.springframework.boot spring-boot-starter-test test io.projectreactor reactor-test test
第二步:創建一個HandlerFunction
public class TestFunction implements HandlerFunction{ @Override public Mono handle(ServerRequest serverRequest) { return ServerResponse.ok().body( Mono.just(parse(serverRequest, "args1") + parse(serverRequest, "args2")) , Integer.class); } private int parse(final ServerRequest request, final String param) { return Integer.parseInt(request.queryParam(param).orElse("0")); } }
第三步:注入一個RouterFunction
@Configuration public class TestRouteFunction { @Bean public RouterFunctionrouterFunction() { return RouterFunctions.route(RequestPredicates.GET("/add"), new TestFunction()); } }
第四步:在webflux中,也可以使用之前的java注解的編程方式,我們也創建一個controller
@RestController @RequestMapping("/api/test") public class HelloController { @RequestMapping("/hello") public Monohello() { return Mono.just("hello world"); } }
第五步:創建啟動類
@SpringBootApplication public class Spring5DemoApplication { public static void main(String[] args) { SpringApplication.run(Spring5DemoApplication.class, args); } }
第六步:啟動項目,訪問如下兩個接口都可以
http://localhost:8080/api/test/hello http://localhost:8080/add?args1=2&args2=3和spring-boot結合
通過上面的例子,我們看到基本的兩個類:HandlerFunction和RouterFunction,同時webflux有如下特性:
異步非阻塞
響應式(reactive)函數編程,純lambda表達式
不僅僅是在Servlet容器中tomcat/jetty中運行,同時支持NIO的Netty和Undertow中,實際項目中,我們往往與spring-boot項目結合,我們跟進代碼可以看看spring-boot是在什么時候創建的server
一、SpringApplication
public ConfigurableApplicationContext run(String... args) { StopWatch stopWatch = new StopWatch(); stopWatch.start(); ConfigurableApplicationContext context = null; CollectionexceptionReporters = new ArrayList<>(); configureHeadlessProperty(); SpringApplicationRunListeners listeners = getRunListeners(args); listeners.starting(); try { ApplicationArguments applicationArguments = new DefaultApplicationArguments( args); ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments); configureIgnoreBeanInfo(environment); Banner printedBanner = printBanner(environment); context = createApplicationContext(); exceptionReporters = getSpringFactoriesInstances( SpringBootExceptionReporter.class, new Class[] { ConfigurableApplicationContext.class }, context); prepareContext(context, environment, listeners, applicationArguments, printedBanner); refreshContext(context); afterRefresh(context, applicationArguments); stopWatch.stop(); if (this.logStartupInfo) { new StartupInfoLogger(this.mainApplicationClass) .logStarted(getApplicationLog(), stopWatch); } listeners.started(context); callRunners(context, applicationArguments); } catch (Throwable ex) { handleRunFailure(context, ex, exceptionReporters, listeners); throw new IllegalStateException(ex); } try { listeners.running(context); } catch (Throwable ex) { handleRunFailure(context, ex, exceptionReporters, null); throw new IllegalStateException(ex); } return context; }
我們只分析入口,其它代碼暫時不管,找到refreshContext(context);這一行進去
二、ReactiveWebServerApplicationContext的refresh()
@Override public final void refresh() throws BeansException, IllegalStateException { try { super.refresh(); } catch (RuntimeException ex) { stopAndReleaseReactiveWebServer(); throw ex; } }
三、ReactiveWebServerApplicationContext的onRefresh()
@Override protected void onRefresh() { super.onRefresh(); try { createWebServer(); } catch (Throwable ex) { throw new ApplicationContextException("Unable to start reactive web server", ex); } }
四、看到這里我們就找到入口方法了:createWebServer(),跟進去,找到NettyReactiveWebServerFactory中創建webserver
@Override public WebServer getWebServer(HttpHandler httpHandler) { HttpServer httpServer = createHttpServer(); ReactorHttpHandlerAdapter handlerAdapter = new ReactorHttpHandlerAdapter( httpHandler); return new NettyWebServer(httpServer, handlerAdapter, this.lifecycleTimeout); }
看到ReactorHttpHandlerAdapter這個類想必特別親切,在開篇說過是spring-cloud-gateway的入口,createHttpServer方法的細節暫時沒有去學習了,后續有時間去深入了解下
結語spring5的相關新特性也是在學習中,這一篇文章算是和springboot結合的入門吧,后續有時間再深入學習
更多文章可以訪問博客:
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/74417.html
摘要:響應式編程是基于異步和事件驅動的非阻塞程序,只是垂直通過在內啟動少量線程擴展,而不是水平通過集群擴展。三特性常用的生產的特性如下響應式編程模型適用性內嵌容器組件還有對日志消息測試及擴展等支持。 摘要: 原創出處 https://www.bysocket.com 「公眾號:泥瓦匠BYSocket 」歡迎關注和轉載,保留摘要,謝謝! 02:WebFlux 快速入門實踐 文章工程: JDK...
摘要:在配置下上面啟動的配置數據庫名為賬號密碼也為。突出點是,即非阻塞的。四對象修改包里面的城市實體對象類。修改城市對象,代碼如下城市實體類城市編號省份編號城市名稱描述注解標記對應庫表的主鍵或者唯一標識符。 摘要: 原創出處 https://www.bysocket.com 「公眾號:泥瓦匠BYSocket 」歡迎關注和轉載,保留摘要,謝謝! 這是泥瓦匠的第104篇原創 文章工程: JDK...
摘要:上一章我們提到過與,對于具體的介紹沒說到,這一章我在這里簡單介紹一下,既然提到和,那肯定得提到什么是響應式編程,什么是。 showImg(https://segmentfault.com/img/remote/1460000018819338?w=1024&h=500); 上一章我們提到過Mono 與 Flux,對于具體的介紹沒說到,這一章我在這里簡單介紹一下,既然提到Mono和Flu...
摘要:數據和信息是不可分離的,數據是信息的表達,信息是數據的內涵。數據本身沒有意義,數據只有對實體行為產生影響時才成為信息。主要目標是為開發提供天然的模板,并且能在里面準確的顯示。目前是自然更加推薦。 這是泥瓦匠的第105篇原創 文章工程: JDK 1.8 Maven 3.5.2 Spring Boot 2.1.3.RELEASE 工程名:springboot-webflux-4-thym...
摘要:二結構這個工程會對城市進行管理實現操作。負責將持久層數據操作相關的封裝組織,完成新增查詢刪除等操作。原因是,直接使用和是非阻塞寫法,相當于回調方式。反應了是的好處集合了非阻塞異步。其實是的一個補充。可以發布類型的元素。 摘要: 原創出處 https://www.bysocket.com 「公眾號:泥瓦匠BYSocket 」歡迎關注和轉載,保留摘要,謝謝! 這是泥瓦匠的第102篇原創 0...
閱讀 3522·2021-10-08 10:04
閱讀 869·2019-08-30 15:54
閱讀 2185·2019-08-29 16:09
閱讀 1352·2019-08-29 15:41
閱讀 2279·2019-08-29 11:01
閱讀 1740·2019-08-26 13:51
閱讀 1030·2019-08-26 13:25
閱讀 1814·2019-08-26 13:24