@GetMapping public boolean register(@RequestParam("age") int age) { // ... }
@GetMapping("/persons/findbyage/{age}") public boolean findByAge(@PathVariable("age") int age) { // ... }