Can someone explain line 10 @9:32 I am receving an error: new SpringApplication(ReactiveClientApplication.class, args) The constructor SpringApplicationBuilder(Class, String[]) is undefined Also line 27 @12:47 Error: Syntax error on token ":", invalid AssignmentOperator Am I missing something?
@ellypally2676 жыл бұрын
remove the args paramater in static void main method
@Cyberglad7 жыл бұрын
.flatMap(cr -> cr.bodyToFlux(Event.class)) - why your compiler doesn't complain "cannot convert Flux to Mono"?? You changed again the API specs?
@srinivasuludagda57366 жыл бұрын
Change .flatMap(cr -> cr.bodyToFlux(Event.class)) to .flatMapMany(clientResponse -> clientResponse.bodyToFlux(Event.class)) and add @NoArgsConstructor in Event.class
@TheRajesh9999994 жыл бұрын
@@srinivasuludagda5736 My Response is giving me a header content-type 'text/plain;charset=UTF-8' and it is not able to convert to my class
@renceabishek4 жыл бұрын
Interesting to see Spring people also using Intellij intead of STS :)
@oleersoy65477 жыл бұрын
That Rocked!!
@BoatToast6 жыл бұрын
Code at 11:50 stopped compiling, I use the following now: webClient.get() .uri("/stream") .accept(MediaType.TEXT_EVENT_STREAM) .exchange() .flatMapMany(clientResponse -> clientResponse.bodyToFlux(Movie.class)) .subscribe(System.out::println);
@abhijitprusty3 жыл бұрын
just awesome
@李字符7 жыл бұрын
Awesome!!!~
@neotechfriend7 жыл бұрын
AllArgsConstructor error with Final in Event class
@neotechfriend7 жыл бұрын
Just installed lombok plugin Ok
@ukyo15414 жыл бұрын
Interesting ~
@zedisdeadz7 жыл бұрын
6:40 OK wtf happened here?
@李字符7 жыл бұрын
just like netty
@Zhuinden7 жыл бұрын
Zip "waits" until the next emission, and it returns a tuple