@GetMapping("/") public String hello(@RequestParam(value="name", defaultValue="World") String name) { return String.format("Hello %s!", name); }