Notice
Recent Posts
Recent Comments
Link
목록@RequestParam (1)
개발 무지렁이
[Spring] 파라미터를 받는 @RequestParam과 @PathVariable
@PathVariable 경로를 변수처럼 쓰겠다. name은 넘기지 말고, 자원만 넘겨라. (URL 요청주소 간소화) @Controller public class PathVariableController { @RequestMapping(value = {"/{type}/{id}.do"}) public void test(@PathVariable String type, @PathVariable String id) { System.out.println("PathVariableController의 test call..."); System.out.println("type: " + type); System.out.println("id: " + id); } } @RequestParam 전송된 parameter의 nam..
Backend/스프링
2023. 5. 5. 20:49