Skip to content

Instantly share code, notes, and snippets.

@g00glen00b
Last active November 10, 2017 19:13
Show Gist options
  • Save g00glen00b/f3e4bf68cba49707bb20b7b11b4c254d to your computer and use it in GitHub Desktop.
Save g00glen00b/f3e4bf68cba49707bb20b7b11b4c254d to your computer and use it in GitHub Desktop.
Spring routing
RouterFunction<ServerResponse> helloWorldRoute =
RouterFunctions.route(RequestPredicates.get("/hello-world"),
request -> Response.ok().body(fromObject("Hello World")));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment