[Java Spring Boot] 퀴리 스트링, 주소변수맵핑2021. 6. 6. 23:08
출처: 이지업 스프링부트 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 +"배달갑니다. (주소변수맵핑)";
}
}