230613 Request Param

보트·2023년 6월 13일
0

Spring

목록 보기
1/27


    // 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);
    }

코드를 수정한 후 새로 실행하는 것을 잊지말기.

profile
일주일에 한 번

0개의 댓글