Skip to content

Instantly share code, notes, and snippets.

@wkorando
Last active March 31, 2020 21:35
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 wkorando/7235cad0e4ad7a9c9161894db03cf282 to your computer and use it in GitHub Desktop.
Save wkorando/7235cad0e4ad7a9c9161894db03cf282 to your computer and use it in GitHub Desktop.
@GetMapping("/name")
public String helloQueryMessage(@RequestParam String firstName, @RequestParam String lastName) {
return String.format("Hello %s %s!", firstName, lastName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment