Rest API Using Functional Endpoint | Spring Boot Webflux

preview_player
Показать описание
Hi Friends,

#GainJavaKnowledge
In this video we will learn how to create rest api using Reactive programming Functiona endpoint. Router and Handler classes. Functional Endpoint Request workflow.

Github Link to download the source code:
=================================
Рекомендации по теме
Комментарии
Автор

Nice try dear but there are few gaps...in your example

vivekpanday
Автор

Hello sir, I am getting the below exception when I run the project.

@Configuration
public class RouteConfig {
@Autowired
private RouteHandler routeHandler;
@Bean
public getCoustomer(){
return RouterFunctions.route()
.GET("/get-customer",
.build();
}
}

class cannot be cast to class

rohitbornare