Skip to content

Instantly share code, notes, and snippets.

@linhvovn
Created December 29, 2018 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linhvovn/e8025703dcc04ec8486a33d310d73bb3 to your computer and use it in GitHub Desktop.
Save linhvovn/e8025703dcc04ec8486a33d310d73bb3 to your computer and use it in GitHub Desktop.
@Configuration
public class WelcomeRouter {
@Bean
public RouterFunction<ServerResponse> route(WelcomeHandler welcomeHandler) {
return RouterFunctions
.route(RequestPredicates.GET("/index")
.and(RequestPredicates.accept(MediaType.TEXT_HTML)), welcomeHandler::hello);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment