webflux使用

POMファイル、我々はwebfluxに使用し、この時間は、上記のウェブコメントアウトので、それ以外の場合は、コンパイルエラーがなかったので山は、2頭のトラは、次の2つの依存関係が使用できないことはできませんが、ページは表示されません。


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

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

HelloHandle类

package com.example.demo;

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;

@Component
public class HelloHandle {
    public Mono<ServerResponse> hello(ServerRequest request) {
        //返回一个字符串 hello this is a spring boot webflux project!
        return ServerResponse.ok().contentType(MediaType.APPLICATION_JSON)
                .body(BodyInserters.fromObject("hello this is a spring boot webflux project!"));
    }
}

HelloRouterクラス

package com.example.demo;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;
import org.springframework.web.reactive.function.server.*;

//@Configuration启动容器+@Bean注册Bean
@Configuration
public class HelloRouter {
    @Bean
    public RouterFunction<ServerResponse> routeHello(HelloHandle helloHandle) {
        //接收HelloHandle传来的字符串(显示在网页),更改路由
        return RouterFunctions
                .route(RequestPredicates.GET("/hello")
                .and(RequestPredicates.accept(MediaType.APPLICATION_JSON)),helloHandle::hello);
    }
}

概要:上記ウェブをコメントアウトする必要があり、または表示されません

移動先:https://blog.csdn.net/qq_43141611/article/details/102629456

公開された25元の記事 ウォンの賞賛6 ビュー7542

おすすめ

転載: blog.csdn.net/B_G_boy/article/details/104666010