custom annotation
-
요청 맵핑하기 (스프링 MVC - 4)Programming/Spring MVC 2020. 3. 24. 00:23
1. HTTP Method @ReqeustMapping @GetMapping @PostMapping @Controller public class SampleController { @RequestMapping(value = "/hello", method = {RequestMethod.GET, RequestMethod.POST}) public @ResponseBody String hello() { return "hello"; } } GET - 클라이언트가 서버의 리소스를 요청할 때 사용 - 캐싱할 수 있다. (조건적인 GET으로 바뀔 수 있다) - 브라우저 기록에 남는다 - 북마크 할 수 있다 - 민감한 데이터를 보낼 때 URL에 보이니까 사용하면 안됨 - idemponent (동일한 GET 요청이면 모두 ..