Skip to content

Instantly share code, notes, and snippets.

@linhvovn
Created December 29, 2018 15:38
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/c1459ab1dcccf3d572014a265fcba5f2 to your computer and use it in GitHub Desktop.
Save linhvovn/c1459ab1dcccf3d572014a265fcba5f2 to your computer and use it in GitHub Desktop.
@Component
public class WelcomeHandler {
public Mono<ServerResponse> hello(ServerRequest request) {
return ServerResponse
.ok()
.contentType(MediaType.TEXT_HTML)
.render("index");
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment