博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring WebFlux – SpringReact式编程
阅读量:2531 次
发布时间:2019-05-11

本文共 14618 字,大约阅读时间需要 48 分钟。

Spring WebFlux is the new module introduced in Spring 5. Spring WebFlux is the first step towards reactive programming model in spring framework.

Spring WebFlux是Spring 5中引入的新模块。SpringWebFlux是向Spring框架中的React式编程模型迈出的第一步。

弹簧React式编程 (Spring Reactive Programming)

If you are new to reactive programming model, then I would highly suggest you to go through following articles to learn about reactive programming.

如果您不熟悉React式编程模型,那么我强烈建议您阅读以下文章以了解React式编程。

If you are new to Spring 5, please go through .

如果您不熟悉Spring 5,请参阅 。

SpringWebFlux (Spring WebFlux)

Spring WebFlux is the alternative to module. Spring WebFlux is used to create fully asynchronous and non-blocking application built on event-loop execution model.

Spring WebFlux是模块的替代方案。 Spring WebFlux用于创建基于事件循环执行模型的完全异步且非阻塞的应用程序。

Below diagram from Spring Official Documentation provides great insight on comparison of Spring WebFlux to Spring Web MVC.

Spring官方文档中的下图提供了关于Spring WebFlux与Spring Web MVC比较的深刻见解。

If you are looking to develop a web application or Rest web service on non-blocking reactive model, then you can look into Spring WebFlux.

如果您希望在非阻塞React模型上开发Web应用程序或Rest Web服务,那么可以研究Spring WebFlux。

Spring WebFlux is supported on Tomcat, Jetty, Servlet 3.1+ containers, as well as on non-Servlet runtimes such as Netty and Undertow.

Tomcat,Jetty,Servlet 3.1+容器以及Netty和Undertow等非Servlet运行时都支持Spring WebFlux。

Spring WebFlux is built on . Project Reactor is the implementation of Reactive Streams specification. Reactor provides two types:

Spring WebFlux基于构建。 Project Reactor是Reactive Streams规范的实现。 Reactor提供两种类型:

  1. Mono: implements Publisher and returns 0 or 1 elements

    Mono :实现Publisher,并返回0或1个元素
  2. Flux: implements Publisher and returns N elements.

    Flux :实现Publisher,并返回N个元素。

Spring WebFlux Hello World示例 (Spring WebFlux Hello World Example)

Let’s built a simple Spring WebFlux Hello World application. We will create a simple rest web service and use Spring Boot to run it on default Netty server.

让我们构建一个简单的Spring WebFlux Hello World应用程序。 我们将创建一个简单的rest Web服务,并使用Spring Boot在默认的Netty服务器上运行它。

Our final project structure looks like below image.

我们的最终项目结构如下图所示。

Let’s look into each component of the application one by one.

让我们逐一研究应用程序的每个组件。

Spring WebFlux Maven依赖关系 (Spring WebFlux Maven Dependencies)

4.0.0
com.journaldev.spring
SpringWebflux
0.0.1-SNAPSHOT
Spring WebFlux
Spring WebFlux Example
UTF-8
UTF-8
1.9
org.springframework.boot
spring-boot-starter-parent
2.0.1.RELEASE
org.springframework.boot
spring-boot-starter-webflux
org.springframework.boot
spring-boot-starter-test
test
io.projectreactor
reactor-test
test
spring-snapshots
Spring Snapshots
https://repo.spring.io/snapshot
true
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
spring-snapshots
Spring Snapshots
https://repo.spring.io/snapshot
true
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
org.springframework.boot
spring-boot-maven-plugin
org.apache.maven.plugins
maven-compiler-plugin
3.7.0
${jdk.version}
${jdk.version}

The most important dependencies are spring-boot-starter-webflux and spring-boot-starter-parent. Some other dependencies are for creating JUnit test cases.

最重要的依赖项是spring-boot-starter-webfluxspring-boot-starter-parent 。 其他一些依赖关系是用于创建JUnit测试用例的。

Spring WebFlux处理程序 (Spring WebFlux Handler)

Spring WebFlux Handler method handles the request and returns Mono or Flux as response.

Spring WebFlux Handler方法处理请求并返回MonoFlux作为响应。

package com.journaldev.spring.component;import org.springframework.http.MediaType;import org.springframework.stereotype.Component;import org.springframework.web.reactive.function.BodyInserters;import org.springframework.web.reactive.function.server.ServerRequest;import org.springframework.web.reactive.function.server.ServerResponse;import reactor.core.publisher.Mono;@Componentpublic class HelloWorldHandler {	public Mono
helloWorld(ServerRequest request) { return ServerResponse.ok().contentType(MediaType.TEXT_PLAIN) .body(BodyInserters.fromObject("Hello World!")); }}

Notice that reactive component Mono holds the ServerResponse body. Also look at the function chain to set the return content type, response code and body.

注意,React组件Mono拥有ServerResponse主体。 还要查看功能链,以设置返回内容类型,响应代码和主体。

Spring WebFlux路由器 (Spring WebFlux Router)

Router method are used to define routes for the application. These methods return RouterFunction object that also holds ServerResponse body.

路由器方法用于定义应用程序的路由。 这些方法返回同样包含ServerResponse主体的RouterFunction对象。

package com.journaldev.spring.component;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.http.MediaType;import org.springframework.web.reactive.function.server.RequestPredicates;import org.springframework.web.reactive.function.server.RouterFunction;import org.springframework.web.reactive.function.server.RouterFunctions;import org.springframework.web.reactive.function.server.ServerResponse;@Configurationpublic class HelloWorldRouter {	@Bean	public RouterFunction
routeHelloWorld(HelloWorldHandler helloWorldHandler) { return RouterFunctions.route(RequestPredicates.GET("/helloWorld") .and(RequestPredicates.accept(MediaType.TEXT_PLAIN)), helloWorldHandler::helloWorld); }}

So we are exposing a GET method for /helloWorld and the client call should accept plain text response.

因此,我们公开了/helloWorld的GET方法,并且客户端调用应接受纯文本响应。

Spring Boot应用程序 (Spring Boot Application)

Let’s configure our simple WebFlux application with Spring Boot.

让我们使用Spring Boot配置我们的简单WebFlux应用程序。

package com.journaldev.spring;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class Application {	public static void main(String[] args) {		SpringApplication.run(Application.class, args);	}}

If you look at above code, there is nothing related to Spring WebFlux. But Spring Boot will configure our application as Spring WebFlux since we have added dependency of spring-boot-starter-webflux module.

如果您看上面的代码,则与Spring WebFlux没有任何关系。 但是Spring Boot会将我们的应用程序配置为Spring WebFlux,因为我们添加了spring-boot-starter-webflux模块的依赖项。

Java 9模块支持 (Java 9 Modules Support)

Our application is ready to execute on Java 8, but if you are using Java 9 then we also need to add module-info.java class.

我们的应用程序已准备好在Java 8上执行,但是如果您使用的是Java 9,那么我们还需要添加module-info.java类。

module com.journaldev.spring {    requires reactor.core;    requires spring.web;    requires spring.beans;    requires spring.context;    requires spring.webflux;    requires spring.boot;    requires spring.boot.autoconfigure;    exports com.journaldev.spring;}

运行Spring WebFlux Spring Boot App (Running the Spring WebFlux Spring Boot App)

If you have Spring support in Eclipse, then you can run above class as Spring Boot App.

如果您在Eclipse中具有Spring支持,则可以在类之上运行Spring Boot App。

If you like to use command line, then open terminal and run command mvn spring-boot:run from the project source directory.

如果要使用命令行,请打开终端,然后从项目源目录运行命令mvn spring-boot:run

Once the app is running, notice following log messages to make sure everything is good with our app. It’s also helpful when you extend this simple app by adding more routes and functionalities.

应用程序运行后,请注意以下日志消息,以确保我们的应用程序一切正常。 当您通过添加更多路由和功能扩展此简单应用程序时,它也很有帮助。

2018-05-07 15:01:47.893  INFO 25158 --- [           main] o.s.w.r.f.s.s.RouterFunctionMapping      : Mapped ((GET && /helloWorld) && Accept: ) -> com.journaldev.spring.component.HelloWorldRouter$$Lambda$501/704766954@6eeb5d562018-05-07 15:01:48.495  INFO 25158 --- [ctor-http-nio-1] r.ipc.netty.tcp.BlockingNettyContext     : Started HttpServer on /0:0:0:0:0:0:0:0:80802018-05-07 15:01:48.495  INFO 25158 --- [           main] o.s.b.web.embedded.netty.NettyWebServer  : Netty started on port(s): 80802018-05-07 15:01:48.501  INFO 25158 --- [           main] com.journaldev.spring.Application        : Started Application in 1.86 seconds (JVM running for 5.542)

It’s clear from logs that our app is running on Netty server on port 8080. Let’s go ahead and test our application.

从日志中很明显,我们的应用程序正在端口8080的Netty服务器上运行。让我们继续测试我们的应用程序。

SpringWebFlux App测试 (Spring WebFlux App Test)

We can test our app with various methods.

我们可以通过多种方法测试我们的应用。

  1. Using CURL command
    $ curl https://localhost:8080/helloWorldHello World!$

    使用CURL命令
  2. Launch URL in Browser
    spring webflux restful web service test

    在浏览器中启动URL
  3. Using WebTestClient from Spring 5

    Here is a JUnit test program to test our Rest web service using WebTestClient from Spring 5 reactive web.

    package com.journaldev.spring;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.http.MediaType;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.test.web.reactive.server.WebTestClient;@RunWith(SpringRunner.class)@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)public class SpringWebFluxTest {	@Autowired	private WebTestClient webTestClient;		@Test	public void testHelloWorld() {		webTestClient		.get().uri("/helloWorld") // GET method and URI		.accept(MediaType.TEXT_PLAIN) //setting ACCEPT-Content		.exchange() //gives access to response		.expectStatus().isOk() //checking if response is OK		.expectBody(String.class).isEqualTo("Hello World!"); // checking for response type and message	}}

    Run it a JUnit test case and it should pass with flying colors.

    从Spring 5开始使用WebTestClient

    这是一个JUnit测试程序,用于使用Spring 5响应式Web中的WebTestClient测试我们的Rest Web服务。

    package com.journaldev.spring;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.http.MediaType;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.test.web.reactive.server.WebTestClient;@RunWith(SpringRunner.class)@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)public class SpringWebFluxTest {	@Autowired	private WebTestClient webTestClient;		@Test	public void testHelloWorld() {		webTestClient		.get().uri("/helloWorld") // GET method and URI		.accept(MediaType.TEXT_PLAIN) //setting ACCEPT-Content		.exchange() //gives access to response		.expectStatus().isOk() //checking if response is OK		.expectBody(String.class).isEqualTo("Hello World!"); // checking for response type and message	}}

    运行它一个JUnit测试用例,它应该以飞快的速度通过。

  4. Using WebClient from Spring Web Reactive

    We can also use WebClient to call the .

    package com.journaldev.spring.client;import org.springframework.http.MediaType;import org.springframework.web.reactive.function.client.ClientResponse;import org.springframework.web.reactive.function.client.WebClient;import reactor.core.publisher.Mono;public class HelloWorldWebClient {	public static void main(String args[]) {		WebClient client = WebClient.create("https://localhost:8080");		Mono
    result = client.get() .uri("/helloWorld") .accept(MediaType.TEXT_PLAIN) .exchange(); System.out.println("Result = " + result.flatMap(res -> res.bodyToMono(String.class)).block()); } }

    Just run it as a simple java application and you should see the proper output with a lot of debug messages.

    从Spring Web Reactive使用WebClient

    我们还可以使用WebClient来调用 。

    package com.journaldev.spring.client;import org.springframework.http.MediaType;import org.springframework.web.reactive.function.client.ClientResponse;import org.springframework.web.reactive.function.client.WebClient;import reactor.core.publisher.Mono;public class HelloWorldWebClient {	public static void main(String args[]) {		WebClient client = WebClient.create("https://localhost:8080");		Mono
    result = client.get() .uri("/helloWorld") .accept(MediaType.TEXT_PLAIN) .exchange(); System.out.println("Result = " + result.flatMap(res -> res.bodyToMono(String.class)).block()); } }

    只需将其作为一个简单的Java应用程序运行即可,您应该看到带有大量调试消息的正确输出。

摘要 (Summary)

In this post we learned about Spring WebFlux and how to build a hello world reactive Restful web service.

在这篇文章中,我们了解了Spring WebFlux以​​及如何构建一个Hello WorldReact式Restful Web服务。

It’s good to see that popular frameworks such as Spring are rooting for reactive programming model. But we have a lot to cover because if all your dependencies are not reactive and non-blocking then your application is also not truly reactive.

很高兴看到诸如Spring之类的流行框架正在扎根于React式编程模型。 但是我们有很多要讨论的内容,因为如果您的所有依赖项都不是React性和非阻塞的,那么您的应用程序也不是真正的React性。

For example, relational database vendors doesn’t have reactive drivers because they depend on JDBC, that is not reactive. Hence Hibernate API is also non-reactive. So if you are using relational databases then you can’t built a truly reactive application, yet. I am hopeful that it will change sooner than later.

例如,关系数据库供应商没有响应式驱动程序,因为它们依赖JDBC,而后者不是响应式的。 因此,Hibernate API也是非React性的。 因此,如果您正在使用关系数据库,那么您还不能构建真正的React式应用程序。 我希望它将早日改变。

. 下载项目代码。

Reference:

参考:

翻译自:

转载地址:http://jmqzd.baihongyu.com/

你可能感兴趣的文章
[T-ARA/筷子兄弟][Little Apple]
查看>>
编译Libgdiplus遇到的问题
查看>>
【NOIP 模拟赛】Evensgn 剪树枝 树形dp
查看>>
java学习笔记④MySql数据库--01/02 database table 数据的增删改
查看>>
两台电脑如何实现共享文件
查看>>
组合模式Composite
查看>>
程序员最想得到的十大证件,你最想得到哪个?
查看>>
我的第一篇CBBLOGS博客
查看>>
【MyBean调试笔记】接口的使用和清理
查看>>
07 js自定义函数
查看>>
jQueru中数据交换格式XML和JSON对比
查看>>
form表单序列化后的数据转json对象
查看>>
[PYTHON]一个简单的单元測试框架
查看>>
iOS开发网络篇—XML数据的解析
查看>>
[BZOJ4303]数列
查看>>
一般处理程序在VS2012中打开问题
查看>>
C语言中的++和--
查看>>
thinkphp3.2.3入口文件详解
查看>>
POJ 1141 Brackets Sequence
查看>>
Ubuntu 18.04 root 使用ssh密钥远程登陆
查看>>