RedirectAttributes

스프링 MVC의 Controller 특징 HttpServletRequest, HttpServletResponse를거의 사용할 필요 없이 필요한 기능 구현 다양한 타입의 파라미터 처리, 다양한타입의 리턴타입 사용 가능 GET 방식, POST 방식 등 전송 방식에 대한 처리를 어노테이션으로 처리 가능 상속/인터페이스 방식 대신에 어노테이션만으로도 필요한 설정 가능 @Controller, @RequestMapping 프로젝트 내 org.noel.controller 패키지 폴더에 SampleController라는이름의 클래스를 작성한다. ▶ SampleController 클래스 package org.noel.controller; import org.springframework.stereotype.Controll..
noeul.log
'RedirectAttributes' 태그의 글 목록