전이되는 곳을 생략하는 경우

(View의 패스가 없음) 

​<소스코드>

​@Controller
public class AppointmentsController
   
    @RequestMapping("/sample")
    public ModelAndView doAction() {
   
        ModelAndView mav = new ModelAndView();
        model.addObject("message1", "aaaa");
        return mav;
    }
}

 

 

+ Recent posts