스프링의 핸들러 매핑과 어댑터
2022. 1. 24. 12:10
Spring
스프링은 어댑터 패턴 기반의 프론트 컨트롤러 패턴으로 컨트롤러를 제공하는 핸들러 매핑과 어댑터를 제공한다. 과거에 사용했던 것들을 알아 보자. Controller 인터페이스 @Controller 아님 package org.springframework.web.servlet.mvc; @FunctionalInterface public interface Controller { /** * Process the request and return a ModelAndView object which the DispatcherServlet * will render. A {@code null} return value is not an error: it indicates that * this object completed r..