스프링 MVC 시작하기
SpringMemberFormControllerV1
@RequestMapping
@Controller
public class SpringMemberFormControllerV1 {
@RequestMapping("/springmvc/v1/members/new-form")
public ModelAndView process() {
return new ModelAndView("new-form");
}
}@Controller


ModelAndView
Last updated