스프링의 뷰 리졸버
2022. 1. 24. 12:15
Spring
뷰 리졸버의 동작 방식을 살펴 보자. 먼저 아래와 같이 Controller 인터페이스를 사용한 어댑터로 테스트를 해보자. return new ModelAndView(”new-Form”); 과 같이 사용할 수 있다. @Component("/springmvc/old-controller") public class OldController implements Controller { @Override public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception { System.out.println("OldController.handleRequest"); return new Mode..