// Request Param 방식 (Query String 방식)
// [Request sample]
// param 까지만 API 요청 url(path) / ? : query string 시작, key = value, & : data 구분
// GET http://localhost:8080/hello/request/form/param?name=Robbie&age=95
@GetMapping("/form/param")
@ResponseBody
public String helloGetRequestParam(@RequestParam String name, @RequestParam int age) {
return String.format("Hello, @RequestParam.<br> name = %s, age = %d", name, age);
}
코드를 수정한 후 새로 실행하는 것을 잊지말기.