2021. 4. 7. 12:00ㆍSPRING/SPRING MVC
컨트롤러에 어떤 종류의 파라미터를 받을 수 있고, 어떤 종류의 리턴타입을 사용할 수 있는지 정리된 매뉴얼.
컨트롤러 파라미터 타입 매뉴얼
docs.spring.io/spring-framework/docs/current/reference/html/web.html#mvc-ann-arguments
Web on Servlet Stack
Spring Web MVC is the original web framework built on the Servlet API and has been included in the Spring Framework from the very beginning. The formal name, “Spring Web MVC,” comes from the name of its source module (spring-webmvc), but it is more com
docs.spring.io
컨트롤러 리턴 타입 매뉴얼
docs.spring.io/spring-framework/docs/current/reference/html/web.html#mvc-ann-return-types
Web on Servlet Stack
Spring Web MVC is the original web framework built on the Servlet API and has been included in the Spring Framework from the very beginning. The formal name, “Spring Web MVC,” comes from the name of its source module (spring-webmvc), but it is more com
docs.spring.io
'SPRING > SPRING MVC' 카테고리의 다른 글
Spring MVC - Http 메시지 바디 요청, 응답 파싱 (0) | 2021.04.08 |
---|---|
Spring MVC - 요청 파라미터, @RequestParam, @ModelAttribute (0) | 2021.04.07 |
Spring MVC - 요청 헤더 조회 @RequestHeader, @CookieValue (0) | 2021.04.07 |
Spring MVC - 요청 매핑, @RequestMapping, @PathVariable (0) | 2021.04.06 |
Spring MVC - Front Controller의 핸들러매핑과 핸들러어댑터 (0) | 2021.04.01 |