色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

SpringBoot中的響應式web應用詳解

瀏覽:71日期:2023-04-08 13:18:26

簡介

在Spring 5中,Spring MVC引入了webFlux的概念,webFlux的底層是基于reactor-netty來的,而reactor-netty又使用了Reactor庫。

本文將會介紹在Spring Boot中reactive在WebFlux中的使用。

Reactive in Spring

前面我們講到了,webFlux的基礎是Reactor。 于是Spring Boot其實擁有了兩套不同的web框架,第一套框架是基于傳統的Servlet API和Spring MVC,第二套是基于最新的reactive框架,包括 Spring WebFlux 和Spring Data的reactive repositories。

SpringBoot中的響應式web應用詳解

我們用上面的一張圖可以清晰的看到兩套體系的不同。

對于底層的數據源來說,MongoDB, Redis, 和 Cassandra 可以直接以reactive的方式支持Spring Data。而其他很多關系型數據庫比如Postgres, Microsoft SQL Server, MySQL, H2 和 Google Spanner 則可以通過使用R2DBC 來實現對reactive的支持。

而Spring Cloud Stream甚至可以支持RabbitMQ和Kafka的reactive模型。

下面我們將會介紹一個具體的Spring Boot中使用Spring WebFlux的例子,希望大家能夠喜歡。

注解方式使用WebFlux

要使用Spring WebFlux,我們需要添加如下的依賴:

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency>

只用注解的方式和普通的Spring MVC的方式很類似,我們可以使用@RestController表示是一個rest服務,可以使用 @GetMapping('/hello') 來表示一個get請求。

不同之處在于,我們請求的產生方式和返回值。

熟悉Reactor的朋友可能都知道,在Reactor中有兩種產生序列的方式,一種是Flux一種是Mono,其中Flux表示1或者多,而Mono表示0或者1。

看一下我們的Controller該怎么寫:

@RestControllerpublic class WelcomeController { @GetMapping('/hello') public Mono<String> hello() { return Mono.just('www.flydean.com'); } @GetMapping('/hellos') public Flux<String> getAll() { //使用lambda表達式 return Flux.fromStream(Stream.of('www.flydean.com','flydean').map(String::toLowerCase)); }}

這個例子中,我們提供了兩個get方法,第一個是hello,直接使用Mono.just返回一個Mono。

第二個方法是hellos,通過Flux的一系列操作,最后返回一個Flux對象。

有了Mono對象,我們怎么取出里面的數據呢?

public class WelcomeWebClient {private WebClient client = WebClient.create('http://localhost:8080');private final Mono<ClientResponse> result = client.get().uri('/hello').accept(MediaType.TEXT_PLAIN).exchange();public String getResult() {return ' result = ' + result.flatMap(res -> res.bodyToMono(String.class)).block();}}

我們通過WebClient來獲取get的結果,通過exchange將其轉換為ClientResponse。

然后提供了一個getResult方法從result中獲取最終的返回結果。

這里,我們先調用FlatMap對ClientResponse進行轉換,然后再調用block方法,產生一個新的subscription。

最后,我們看一下Spring Boot的啟動類:

@Slf4j@SpringBootApplicationpublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); WelcomeWebClient welcomeWebClient = new WelcomeWebClient(); log.info('react result is {}',welcomeWebClient.getResult()); }}

編程方式使用webFlux

剛剛的注解方式其實跟我們常用的Spring MVC基本上是一樣的。

接下來,我們看一下,如果是以編程的方式來編寫上面的邏輯應該怎么處理。

首先,我們定義一個處理hello請求的處理器:

@Componentpublic class WelcomeHandler {public Mono<ServerResponse> hello(ServerRequest request) {return ServerResponse.ok().contentType(MediaType.TEXT_PLAIN).body(BodyInserters.fromValue('www.flydean.com!'));}}

和普通的處理一樣,我們需要返回一個Mono對象。

注意,這里是ServerRequest,因為WebFlux中沒有Servlet。

有了處理器,我們需要寫一個Router來配置路由:

@Configurationpublic class WelcomeRouter {@Beanpublic RouterFunction<ServerResponse> route(WelcomeHandler welcomeHandler) {return RouterFunctions.route(RequestPredicates.GET('/hello').and(RequestPredicates.accept(MediaType.TEXT_PLAIN)), welcomeHandler::hello);}}

上面的代碼將/hello和welcomeHandler::hello進行了綁定。

WelcomeWebClient和Application是和第一種方式是一樣的。

public class WelcomeWebClient {private WebClient client = WebClient.create('http://localhost:8080');private Mono<ClientResponse> result = client.get().uri('/hello').accept(MediaType.TEXT_PLAIN).exchange();public String getResult() {return ' result = ' + result.flatMap(res -> res.bodyToMono(String.class)).block();}}

public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); WelcomeWebClient welcomeWebClient = new WelcomeWebClient(); log.info('react result is {}',welcomeWebClient.getResult()); }}

Spring WebFlux的測試

怎么對webFlux代碼進行測試呢?

本質上是和WelcomeWebClient的實現是一樣的,我們去請求對應的對象,然后檢測其返回值,最后判斷返回值是否我們所期待的內容。

如下所示:

@ExtendWith(SpringExtension.class)@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)public class WelcomeRouterTest { @Autowired private WebTestClient webTestClient; @Test public void testHello() { webTestClient .get().uri('/hello') .accept(MediaType.TEXT_PLAIN) .exchange() .expectStatus().isOk() .expectBody(String.class).isEqualTo('www.flydean.com!'); }}

總結

webFlux使用了Reactor作為底層的實現,和通常我們習慣的web請求方式是有很大不同的,但是通過我們的Spring框架,可以盡量保證原有的代碼編寫風格和習慣。

只需要在個別部分做微調。希望大家能夠通過這個簡單的例子,熟悉Reactive的基本編碼實現。

本文的例子可以參考:springboot-reactive-web

到此這篇關于SpringBoot中的響應式web應用詳解的文章就介紹到這了,更多相關SpringBoot響應式web應用內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: www久久久| 亚洲国产高清人在线 | 国产成人精品久久一区二区三区 | 一区二区三区在线观看视频 | 美女在线网站免费的 | 毛片欧美| 全部免费毛片免费播放 | 亚洲精品h | 国产高清视频免费最新在线 | 正在播放国产大学生情侣 | 亚洲国产精品一区二区三区久久 | 三级精品 | 国产在线精品一区二区三区 | 99爱在线视频 | 在线免费视频国产 | 欧美一级毛片在线一看 | 国产成人亚洲精品91专区高清 | 黄色wwwxxx| 国产欧美日韩亚洲精品区2345 | 国产伦精品一区二区三区无广告 | 欧美日韩一区二区三区视频播 | 中文字幕一区二区三区 精品 | 天天躁天天碰天天看 | 亚洲天堂2018av | 青青热久久国产久精品秒播 | 亚洲成a人片在线观看中文!!! | 美女视频永久黄网站免费观看韩国 | 美女张开腿让男人操 | 精品久久久久久中文字幕网 | 在线播放国产视频 | 天堂资源8中文最新版在线 天堂最新版 | 国产美女视频黄a视频全免费网站 | 国产网站精品 | 最近中文字幕免费视频 | 午夜亚洲国产成人不卡在线 | 在线观看视频亚洲 | 日韩在线视频一区二区三区 | 91亚洲精品久久91综合 | 国产午夜三区视频在线 | 中文在线视频观看 | 久久久夜间小视频 |