순수한 공상과학연구소

출처: 이지업 스프링부트 sns 프로젝트-포토그램만들기-10강

 

Controller 

package com.cos.coslecgradle1.web;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class QueryPathController {

    @GetMapping("/chicken")
    public String chickenQuery(String type){
        return type +"배달갑니다.(쿼리스트링)";

    }

    @GetMapping("/chicken/{type}")
    public String chickenPath(@PathVariable String type){
        return type +"배달갑니다. (주소변수맵핑)";
    }
}