Sri*_*ini 0 spring-boot react-native-router-flux spring-webflux
我正在实现 Spring webflux 演示应用程序,并且已经像这样编写了我的演示应用程序
package com.abcplusd.application;
import com.abcplusd.domain.Event;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.http.MediaType;
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Flux;
import java.util.Collections;
import java.util.Date;
import java.util.stream.Stream;
@SpringBootApplication
public class ReactiveClientApplication {
@Bean WebClient webClient() {
return WebClient.create("http://localhost:8080");
}
@Bean CommandLineRunner demo(WebClient webClient) {
return args -> {
webClient.get()
.uri("/events")
.accept(MediaType.TEXT_EVENT_STREAM)
.exchange()
.flatMap(clientResponse -> clientResponse.bodyToFlux(Event.class))
.subscribe(System.out::println);
};
}
public static void main(String[] args) {
new SpringApplicationBuilder(ReactiveClientApplication.class)
.properties(Collections.singletonMap("server.port", "8081"))
.run(args);
}
}
Run Code Online (Sandbox Code Playgroud)
它显示以下错误
Error:(29, 41) java: incompatible types: no instance(s) of type variable(s) T exist so that reactor.core.publisher.Flux<T> conforms to reactor.core.publisher.Mono<? extends R>
Run Code Online (Sandbox Code Playgroud)
上面的错误是在这一行:
.flatMap(clientResponse -> clientResponse.bodyToFlux(Event.class)))
Run Code Online (Sandbox Code Playgroud)
import lombok.AllArgsConstructor;
import lombok.Data;
import java.util.Date;
@Data
@AllArgsConstructor
public class Event {
private long id;
private Date when;
}
Run Code Online (Sandbox Code Playgroud)
有人可以帮我解决错误吗?
在我的代码中完成这些更改后,它对我有用
.flatMap(clientResponse -> clientResponse.bodyToFlux(Event.class)))
Run Code Online (Sandbox Code Playgroud)
到
.flatMapMany(clientResponse -> clientResponse.bodyToFlux(Event.class))
Run Code Online (Sandbox Code Playgroud)
和
@NoArgsConstructor annotation in Event.Class
Run Code Online (Sandbox Code Playgroud)
如下:
import java.util.Date;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Event {
private long id;
private Date when;
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6791 次 |
| 最近记录: |